Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save francoisgeorgy/14ff1d0a62e2429da856550f93a989a2 to your computer and use it in GitHub Desktop.

Select an option

Save francoisgeorgy/14ff1d0a62e2429da856550f93a989a2 to your computer and use it in GitHub Desktop.
shell one-liners
ps aux | convert label:@- process.png
curl ipinfo.io
# see which commands you run often
history | awk '{print $2}' | sort | uniq -c | sort -rn | head
# view the 10 largest directories in your current directory
du -hs */ | sort -hr | head
# see what apps are consuming internet
ss -p
# share your terminal session in real time
mkfifo hello; script -f hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment