1
0
mirror of https://xfnw.ttm.sh/git/radio.git synced 2024-09-09 14:03:28 +00:00
radio/genplaylist
2020-07-06 20:17:38 +00:00

13 lines
217 B
Bash
Executable File

#!/bin/bash
echo "#EXTM3U"
while [[ 1 ]]; do
read -p 'continue (^c to cancel)?'
SELSONG=$(fzf -q Music)
printf "#EXTINF:,"
echo "$SELSONG" | sed 's+Music/++'|sed ' s/_/ /'|sed 's/....$//'
echo "$SELSONG"
done