One Day One GNU/Linux Command ============================= logger -- Makes entries in the system log file.
Summary: Logger is a CLI to the system log [syslog] module. It can be used to makes entries in the system log from the shell scripts. By default, messages will be logged in /var/log/messages. Example: $ logger MyLog1 -- Log the message in syslog. $ logger -i MyLog2 -- Log the message with PID. $ logger -s MyLog3 -- Log the message in stderr and syslog. $ logger -t MYTAG MyLog4 -- Log the message with specified Tag. $ logger -p user.panic MyLog5 -- Log the message with priority. Read the man page for more Priority Facility and Level details. Read: man logger HTH :) -- Bharathi S _______________________________________________ To unsubscribe, email [EMAIL PROTECTED] with "unsubscribe <password> <address>" in the subject or body of the message. http://www.ae.iitm.ac.in/mailman/listinfo/ilugc
