first commit
This commit is contained in:
Executable
+11
@@ -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
|
||||
Reference in New Issue
Block a user