Add total MB free'd to output of 'remove-unused-sources' script.
This commit is contained in:
parent
193dc19c91
commit
5af2e2d73b
|
@ -56,17 +56,32 @@ set_diff ()
|
||||||
|
|
||||||
remove_sources ()
|
remove_sources ()
|
||||||
{
|
{
|
||||||
|
local TOTAL=0
|
||||||
local FILE
|
local FILE
|
||||||
|
local SIZE
|
||||||
while read FILE
|
while read FILE
|
||||||
do
|
do
|
||||||
if [ $DRY_RUN = yes ]
|
|
||||||
|
SIZE=`stat -c '%s' "${FILE}" 2>/dev/null`
|
||||||
|
|
||||||
|
if [ $? -ne 0 ]
|
||||||
then
|
then
|
||||||
echo "Would remove: ${FILE}"
|
echo "Would remove \"${FILE}\", if it existed."
|
||||||
else
|
else
|
||||||
echo "Removing unused source \"${FILE}\"..."
|
if [ $DRY_RUN = yes ]
|
||||||
rm -f ./"${FILE}" ./"${FILE}-"*.peak
|
then
|
||||||
|
echo "Would remove: ${FILE}"
|
||||||
|
else
|
||||||
|
echo "Removing unused source \"${FILE}\"..."
|
||||||
|
rm -f ./"${FILE}" ./"${FILE}-"*.peak
|
||||||
|
fi
|
||||||
|
|
||||||
|
TOTAL=$(( $TOTAL + $SIZE ))
|
||||||
fi
|
fi
|
||||||
|
|
||||||
done
|
done
|
||||||
|
|
||||||
|
echo "...Freeing a total of $(($TOTAL / ( 1024 * 1024 ) ))MB"
|
||||||
}
|
}
|
||||||
|
|
||||||
[ $# -gt 0 ] || fatal "Usage: $0 [--dry-run] path/to/project"
|
[ $# -gt 0 ] || fatal "Usage: $0 [--dry-run] path/to/project"
|
||||||
|
|
Loading…
Reference in New Issue