Skip to main content

2 posts tagged with "shell"

View All Tags

wKevin

为了让定时播放的吃饭音乐能够随机选择,重写了一下 crontab 的配置:

49 11 * * 1-6  ls -1 /home/me/Music/mp3/*.mp3 | sort --random-sort | head -1 | xargs -I{} nohup play {} fade t 0:20> /dev/null 2>&1 &

其中又复习了一下 shell 的管道和连接符。