first commit

This commit is contained in:
Eric Phillips
2010-10-03 18:17:17 -06:00
commit 6f75701e04
3 changed files with 60 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/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