1
0

Initial commit

This commit is contained in:
2013-03-21 01:54:15 +01:00
commit 8c8798b036
86 changed files with 1864 additions and 0 deletions
Executable
+7
View File
@@ -0,0 +1,7 @@
#!/bin/bash
echo Top 10 directory space hogs
set DIR="$1"
if [ -z $DIR ]; then
set DIR = "."
fi
du -k $DIR | sort -n -r | head -n 10