play(1): handle file names containing consecutive spaces

front
Alex Musolino 2018-06-18 13:11:03 +09:30
parent 583c6d269b
commit 1de2698dc8
1 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,8 @@
#!/bin/rc
rfork e
nl='
'
out=/dev/audio
typ=()
tmp=()
@ -31,7 +33,7 @@ fn play1 {
if not {
switch($2){
case *plain*
sed 's/ //g' | while(j=`{read}){
sed 's/ //g' | while(j=`$nl{read}){
echo $"j >[1=2]
if(~ $"j http:* https:* HTTP:* HTTPS:*){
hget -r 'User-Agent: play' -r 'Icy-MetaData: 0' $"j | play1 $"j
@ -104,5 +106,5 @@ while(~ $1 -*){
>$out {
if(~ $#* 0){play1 stdin; exit}
for(i){echo $i} | play1 args plain
for(i){echo $"i} | play1 args plain
}