This file contains hidden or 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
| #!/usr/bin/env python | |
| # Based on http://stackoverflow.com/questions/982659/quickly-create-large-file-on-a-windows-system | |
| import os | |
| import sys | |
| if len(sys.argv) != 3: | |
| print 'usage: mkbigfile.py <filename> <size in gb>' | |
| sys.exit(1) | |
| # Grab the filename and requested size, convert the size to bytes |
This file contains hidden or 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
| /* the following is the result of viewing /css/style.css (which runs through LessServlet) */ | |
| body{background:#9de;color:black;} |
This file contains hidden or 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
| alias ds="find -maxdepth 1 -type d -path '.\/*' -exec du -sh {} \;" | |
| alias sds="sudo find -maxdepth 1 -type d -path '.\/*' -exec du -sh {} \;" | |
| alias dsg="find -maxdepth 1 -type d -path '.\/*' -exec du -sh {} \; | grep " | |
| alias sdsg="sudo find -maxdepth 1 -type d -path '.\/*' -exec du -sh {} \; | grep " |
NewerOlder