Skip to content

Instantly share code, notes, and snippets.

@zipang
Created January 29, 2021 13:44
Show Gist options
  • Save zipang/c1fd6b06a172081f537be506b9fbf37d to your computer and use it in GitHub Desktop.
Save zipang/c1fd6b06a172081f537be506b9fbf37d to your computer and use it in GitHub Desktop.
Play the content of a dir (mp3)
#!/bin/bash
if [ ! -f "playlist.m3u" ]; then
ls *.mp3 -v -1 > playlist.m3u
fi
mplayer -playlist ./playlist.m3u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment