You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
457 B
Bash
24 lines
457 B
Bash
#!/usr/bin/env bash
|
|
|
|
logdir="/tmp/hpodder/"
|
|
logfile="$logdir`whoami`.`date +%F`.log"
|
|
lockfile="$logdir/lock.log"
|
|
dir=`dirname $0`
|
|
|
|
if [[ ! -d $logdir ]]; then
|
|
echo "Log directory doesn't exist, create it '$lockfile'"
|
|
mkdir -p $logdir
|
|
chmod 777 $logdir
|
|
fi
|
|
|
|
if [[ -f $lockfile ]]; then
|
|
echo "Exit, stale lock file found $lockfile"
|
|
exit 1
|
|
fi
|
|
|
|
touch $lockfile
|
|
hpodder fetch >> $logfile
|
|
$dir/prefix-date ~/podcasts/ >> $logfile
|
|
rm $lockfile
|
|
|