Archive for March, 2007
Copy files from Playlist (.pls) to usb stick
Posted by JohannesTheDeveloper in fun with Linux on March 24th, 2007
cat TopRated.pls |
grep -Eo "/mnt/.*"|sed "s/%.\{2\}/*/g"|
while read line; do cp "$line" /mnt/sda1/Music/TopRated/ -v; done
Recent Comments