Skip to content

Instantly share code, notes, and snippets.

@wtlangford
Last active August 29, 2015 13:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wtlangford/9906600 to your computer and use it in GitHub Desktop.
Save wtlangford/9906600 to your computer and use it in GitHub Desktop.
alias yolo='sudo !!'
# only works in zshell. Does not work in bash.
alias yolo="sudo \$(history | tail -1 | awk \"{\\\$1 = \\\"\\\"; print \\\$0}\")"
@eddiezane
Copy link

bash

alias yolo="sudo $(history | tail -2 | head -1 | cut -c 8-)"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment