Skip to content

Instantly share code, notes, and snippets.

@sirmews
Created January 17, 2017 22:30
Show Gist options
  • Save sirmews/488fd2d7d1a3a154c4960cb50090d056 to your computer and use it in GitHub Desktop.
Save sirmews/488fd2d7d1a3a154c4960cb50090d056 to your computer and use it in GitHub Desktop.
Play all mp3 files in current directory with afplay
#!/bin/bash
find . -name '*.mp3' -exec afplay '{}' \;
@jlrodriguezdev
Copy link

Thanks for sharing.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment