Created
November 11, 2012 00:14
-
-
Save NapoleonWils0n/4053102 to your computer and use it in GitHub Desktop.
mplayer: play files recursively in a directory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
MPlayer play files recursively in a directory. | |
I wanted to have my files played in alphabetical order and only avi files (since a couple .srt subtitle files were in there…), so I came up with this : | |
mplayer -playlist <(find "$PWD" -name "*.avi" -type f | sort) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment