Lib/bin/size_targets.sh
2021-08-28 15:06:11 +01:00

6 lines
72 B
Bash
Executable File

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