Skip to content

Instantly share code, notes, and snippets.

@jrosco
Last active August 29, 2015 14:06
Show Gist options
  • Save jrosco/dce046ee73f23ae5a2cc to your computer and use it in GitHub Desktop.
Save jrosco/dce046ee73f23ae5a2cc to your computer and use it in GitHub Desktop.
Oneliners
#Checks disk usage in directories
for x in $(ls -l / | awk {'print $9'}); do du -sh /$x; done
# Change -mtime X to days older then X to delete
find /path/to/files* -mtime +X -exec rm {} \;
perl -i -pe 's{^#!/bin/sh}{#!/bin/bash}' /path/to/file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment