Skip to content

Instantly share code, notes, and snippets.

@shauninman
Forked from sirmews/afplay-multiple.sh
Last active May 28, 2020 14:08
Show Gist options
  • Save shauninman/722c3b23478219b40e83006529cd3368 to your computer and use it in GitHub Desktop.
Save shauninman/722c3b23478219b40e83006529cd3368 to your computer and use it in GitHub Desktop.
Play all mp3 files in current directory with afplay (sorted properly on Catalina)
#!/bin/bash
find . -name '*.mp3' -print0 | sort -zn | xargs -0 -I '{}' afplay '{}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment