Skip to content

Instantly share code, notes, and snippets.

@hello-party
Last active June 25, 2019 16:55
Show Gist options
  • Save hello-party/938f1c6390443402f5d0ff0a96a4bbe0 to your computer and use it in GitHub Desktop.
Save hello-party/938f1c6390443402f5d0ff0a96a4bbe0 to your computer and use it in GitHub Desktop.
Simple, but useful ZSH functions
#use tb somefile.txt to post to termbin
function tb() {
    cat $1 | nc termbin.com 9999
}

#save videos to Desktop

function yt() {
    cd ~/Desktop
    youtube-dl $1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment