Skip to content

Instantly share code, notes, and snippets.

@yurriy
Created April 12, 2017 18:08
Show Gist options
  • Save yurriy/f61dd6d9f54da7bdec1cd5861b0d18d4 to your computer and use it in GitHub Desktop.
Save yurriy/f61dd6d9f54da7bdec1cd5861b0d18d4 to your computer and use it in GitHub Desktop.
du alternative
#!/bin/bash
my_du () {
ans=0
for file in $(find $1)
do
if [ -f $file ]
then
sz=$(wc -c $file | { read first rest; echo $first; })
ans=$(expr $ans + $sz)
fi
done
echo $ans
return 0;
}
my_du $1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment