lib_bin/size_targets.sh

6 lines
72 B
Bash
Raw Normal View History

2021-09-01 19:44:18 +00:00
#!/bin/bash
for it in $(find . | grep "target$")
do
du -hs "$it"
done