Skip to content

Instantly share code, notes, and snippets.

@calvinjuarez
Last active February 27, 2024 22:47
Show Gist options
  • Save calvinjuarez/64281ca14d4a9cf567b464a7cbdbee50 to your computer and use it in GitHub Desktop.
Save calvinjuarez/64281ca14d4a9cf567b464a7cbdbee50 to your computer and use it in GitHub Desktop.
Simon Says: A dumb bash thing.

alias simon-says='sudo'

or better yet

function simon {
    [[ "$1" != "says" ]] && return 1
    
    shift
    
    sudo "$@"
    
    return $?
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment