Skip to content

Instantly share code, notes, and snippets.

@boxofrad
Last active December 22, 2015 19:49
Show Gist options
  • Save boxofrad/6522269 to your computer and use it in GitHub Desktop.
Save boxofrad/6522269 to your computer and use it in GitHub Desktop.
Rickroll your co-workers
aliases=(cd ls pwd git rails rake bundle exit ssh rvm ebenv vi vim)
rickroll() {
open 'http://www.youtube.com/watch?v=dQw4w9WgXcQ'
}
for command in ${aliases[*]}
do
alias $command=rickroll
done
mercy() {
for command in ${aliases[*]}
do
unalias $command
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment