lib_bin/size_targets.sh
2021-09-01 20:44:18 +01:00

6 lines
72 B
Bash
Executable File

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