Skip to content

Instantly share code, notes, and snippets.

@joseche
Created December 22, 2015 16:44
Show Gist options
  • Select an option

  • Save joseche/63a3386b70f3d3f93eb5 to your computer and use it in GitHub Desktop.

Select an option

Save joseche/63a3386b70f3d3f93eb5 to your computer and use it in GitHub Desktop.
Unix Tips & Tricks
# A public telnet server with many little games and distractions.
telnet telehack.com
# x-mas syslog
tail -F /var/log/syslog | awk '{printf("\033[%dm%s\033[0m\n",31+NR%2,$0)}'
# Star Wars Episode IV in Reverse DNS.
( seq 1 8 200 ; seq 6 8 200 ) | sort -n | xargs -I{} -n 1 dig +short -x 206.214.251.{}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment