This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
du -k / > /tmp/du | |
find / -ls > /tmp/ls | |
sort -n /tmp/du #to find the biggest directories | |
sort -n -k 7,7 /tmp/ls #to find the biggest files | |
#at least the latter one you probably want to pipe to either say less or tail | |
sort -n -k 7,7 /tmp/ls | tail -100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I saw him standin' there by the CI machine | |
I knew he must a been about seventeen | |
The beat was goin' strong | |
Buildin' my favorite Long | |
An' I could tell it wouldn't be long | |
Till the light would be green, yeah green | |
And I could tell it wouldn't be long | |
Till the light would be green, yeah green, singin' | |
I love awesome code |