Skip to content

Instantly share code, notes, and snippets.

@syusui-s
Last active December 22, 2015 21:59
Show Gist options
  • Select an option

  • Save syusui-s/6536850 to your computer and use it in GitHub Desktop.

Select an option

Save syusui-s/6536850 to your computer and use it in GitHub Desktop.
汚いけど上げておく
#!/bin/bash
NOWDIR=$PWD
cd ./ # target directory
if ls | grep .mp3 &> /dev/null ;then
SONGRAND=$(expr $RANDOM % $(ls -1 *.mp3 | wc -l) + 1)
mpg123 "$(ls -1 *.mp3 | awk 'NR=='$SONGRAND'{ print $0 }')"
else
exit 1
fi
cd $NOWDIR
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment