6 lines
72 B
Bash
6 lines
72 B
Bash
|
#!/bin/bash
|
||
|
for it in $(find . | grep "target$")
|
||
|
do
|
||
|
du -hs "$it"
|
||
|
done
|