Last active
August 29, 2015 14:13
-
-
Save ghthor/d622eac67df89ff0c4ba to your computer and use it in GitHub Desktop.
Pick 5 random videos from my collection and play them, then shutdown my computer. I use it to fall asleep.
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
| #!/bin/bash | |
| # find all videos in $PWD/* | |
| # randomize them | |
| # pick 5 of them | |
| # add the vlc quit signal | |
| # vlc | |
| # shut her down | |
| find -name "*.mkv" | \ | |
| perl -MList::Util -e 'print List::Util::shuffle <>' | \ | |
| head -n 5 | \ | |
| sed '$ a\vlc://quit' | \ | |
| xargs vlc && \ | |
| sudo shutdown |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment