Track the shell history of specific users

Track the shell history of specific users

Use this script to track and keep a record of the shell history of specific users.
#!/bin/ksh
#
# Script to invoke ksh with invoking user specific shell history file.
#
# See if "-" has been pased on command line. If so then the switch user should
# be the second argument. If not it should be the first argument.
if [ $1 = - ]
then SWUSER=$2
else SWUSER=$1
fi

# Set variable for home directory switch user.
SWUSERHOME=`ls -d ~$SWUSER`

# Set user name of invoking user to be used as suffix for shell history file.
RLUSER=`who am i |awk '{print $1}'`

# Run system su with arguments passed in and creating individual shell history
# file in the directory determined above.

su $@ -c "HISTFILE=$SWUSERHOME/.sh_history.$RLUSER;export HISTFILE;exec ksh -o vi"

    Requires Free Membership to View

    SearchSecurity.com members gain immediate and unlimited access to breaking industry news, virus alerts, new hacker threats, highly focused security newsletters, and more -- all at no cost. Join me on SearchSecurity.com today!

    Michael S. Mimoso, Editorial Director

    By submitting your registration information to SearchSecurity.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchSecurity.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

This was first published in February 2003

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.