Fixed typo, added url for briefing explanation

master
Steven Saus 6 years ago
parent 0780269d77
commit 2402863dff
  1. 8
      README.md
  2. 2
      briefing.sh

@ -1,8 +1,8 @@
# multiple_scripts
Multiple scripts that are useful but don't deserve their own repository.
Multiple scripts that are useful but don't deserve their own repository.
# briefing.sh
## briefing.sh
Used along with Podfox to create a daily briefing without involving
Google or Amazon or Apple.
Google or Amazon or Apple. The post detailing this is at
[ideatrash](https://ideatrash.net/?p=69528).

@ -18,5 +18,5 @@ find ~/podcasts -name '*.mp3' -exec mv {} ~/briefing/$today \;
# This does not seem to work with ~/ for $HOME, so I've put the full user
# path here.
playlist='/home/user/briefing/play.m3u' ; if [ -f $playlist ]; then rm $playlist ; fi ; for f in /home/steven/briefing/$today/*.mp3; do echo "$f" >> "$playlist"; done
playlist='/home/user/briefing/play.m3u' ; if [ -f $playlist ]; then rm $playlist ; fi ; for f in /home/user/briefing/$today/*.mp3; do echo "$f" >> "$playlist"; done
mplayer -playlist "$playlist"

Loading…
Cancel
Save