Created
January 17, 2017 22:30
-
-
Save sirmews/488fd2d7d1a3a154c4960cb50090d056 to your computer and use it in GitHub Desktop.
Play all mp3 files in current directory with afplay
This file contains 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 . -name '*.mp3' -exec afplay '{}' \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for sharing.