some useful bash
run a script for 10 times
for i in `seq 1 10`; do perl 81_rand_log_id.t ; done
watch
### those is from man wacth
To watch for mail, you might do
watch -n 60 from
To watch the contents of a directory change, you could use
watch -d ls -l
If you're only interested in files owned by user joe, you might use
watch -d 'ls -l | fgrep joe'