Files
personal-utilities/podcast-sync.sh
T
Eric Phillips 6f75701e04 first commit
2010-10-03 18:17:17 -06:00

12 lines
245 B
Bash
Executable File

#!/bin/bash
BASEDIR="${HOME}/gpodder-downloads/"
SYNCDIR="/media/sdb1/MUSIC/podcast-`date +%m%d`"
mkdir -p ${SYNCDIR}
echo $BASEDIR
echo $SYNCDIR
find $BASEDIR -type f -iname "*.mp3" | while read f
do
cp "${f}" ${SYNCDIR}
done
mkplaylist.sh