On Mon, 2 Feb 2009 12:18:38 -1000, you wrote: >Yeah I got those in there. Now I need to make a bash script to compress >files and move them to a web directory .... If I only knew bash :/
I think I can help you there. I made exactly that kind of script, which is executed regularly by a cronjob. I have the file here: /etc/cron.hourly/publishtfdemos And it contains this: #!/bin/sh for f in /home/tfserver/srcds/orangebox/tf/auto*.dem;do fuser "$f">/dev/null 2>&1 || mv -f "$f" /var/www/html/tf2/demos/ >/dev/null 2>&1;done for f in /var/www/html/tf2/demos/*.dem;do zip -m -j -9 "$f".zip "$f" >/dev/null 2>&1;done exit 0 Each block of lines above should be on one line in the file (darned line-wrap). Adjust the paths to suit your installation. Mikael _______________________________________________ To unsubscribe, edit your list preferences, or view the list archives, please visit: http://list.valvesoftware.com/mailman/listinfo/hlds_linux

