Wicked Cool Shell Scripts
Wicked Cool Shell Scripts :: shell script 017-logrm.sh

Shell Script 017-logrm.sh

#!/bin/sh
#  logrm - log all file deletion requests unless "-s" flag is used

removelog="/tmp/removelog.log"

if [ $# -eq 0 ] ; then
  echo "Usage: $0 [-s] list of files or directories" >&2
  exit 1
fi

if [ "$1" = "-s" ] ; then
  # silent operation requested... don't log
  shift
else
  echo "$(date): ${USER}: $@" >> $removelog
fi

/bin/rm "$@"     

exit 0

Explore The Book!
[book cover]
Table of Contents
Read Some Scripts!
Shell Script Library
Book Errata
All The Links
Read the Reviews
Talk About It
Author Bio
Buy The Book!



Other books by author Dave Taylor
Learning Unix for Mac OS X (O'Reilly & Associates)
Solaris 9 for Dummies (Wiley)
Teach Yourself Unix in 24 Hours (Sams/Macmillan)
Teach Yourself Unix System Administration in 24 Hours (Sams/Macmillan)
Creating Cool HTML 4 Web Pages (Wiley)