Lib/bin/size_targets.sh

6 lines
72 B
Bash
Raw Normal View History

2021-08-28 14:06:11 +00:00
#!/bin/bash
for it in $(find . | grep "target$")
do
du -hs "$it"
done