Labor Day
Just resting. made spaghetti sauce last night. Yom. Watched "Painted Veil and "Lord of War" this weekend. Bill Maher is back on HBO. Yippee. Sarah Connor Chronicles, House, The closer, NCIS, CSI, CSI: Miami, CSI: NYC and a bunch of other programs are coming back soon.
I’m reading "Generation Kill by Evan Wright.
doodling…….
#!/bin/bash
## script to monitor flash audio file in /tmp
## copy the file to a directory and add the .m4a suffix so that audacious can play the files.
### note ####
# there is no error detection built in script
# if there is no Flash* file the script will fail.
## Note 2
## the "sleep 12" instruction is included so that the entire audio file has a chance to download.
cd /tmp
while true
do
for file in `ls Flash*`
do
sleep 12
cp $file /home/art/Music/test/$file.m4a
done
sleep 90
done