I use the following script (triggered from a launcher) to remove those chars from my podcasts:
#!/bin/bashAfter that, copy/paste of my podcasts goes fine.
find $HOME/Desktop/downloads/ | while read f
do
REN="$(echo "$f" | tr ":" "_" | cut -d '?' -f 1)"
echo "mv $f $REN"
mv "$f" "$REN"
done
No comments:
Post a Comment