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