Skip to content

Instantly share code, notes, and snippets.

@exogen
Last active August 29, 2015 14:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save exogen/5f4d2abfedbcd8aec933 to your computer and use it in GitHub Desktop.
Save exogen/5f4d2abfedbcd8aec933 to your computer and use it in GitHub Desktop.
Instantly play the first result from YouTube
#!/bin/bash
# Usage: play bizarre love triangle
# Arguments are joined so no quotes are needed.
# NOTE: $TMPDIR (on Mac at least) already ends in a slash.
youtube-dl --default-search "ytsearch" \
--restrict-filenames \
--output "${TMPDIR:-/tmp/}%(title)s-%(id)s.%(ext)s" \
--exec afplay "$*"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment