Skip to content

Instantly share code, notes, and snippets.

@skriticos
Created January 2, 2011 20:04
Show Gist options
  • Save skriticos/762772 to your computer and use it in GitHub Desktop.
Save skriticos/762772 to your computer and use it in GitHub Desktop.
One liner to play media files in folder tree with mplayer (shuffeled and full screen)
#! /bin/bash
# play files in random order
find . -type f \( -name "*.mkv" -o -name "*.avi" -o -name "*.flv" \) -print0 | xargs -0 mplayer -shuffle -fs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment