mirror of
https://xfnw.ttm.sh/git/radio.git
synced 2024-09-09 14:03:28 +00:00
13 lines
217 B
Bash
Executable File
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
|