Skip to content

Instantly share code, notes, and snippets.

@gaoxt
Last active March 7, 2017 13:59
Show Gist options
  • Save gaoxt/0c95e9a74e74efe64fbf4f640a5065fc to your computer and use it in GitHub Desktop.
Save gaoxt/0c95e9a74e74efe64fbf4f640a5065fc to your computer and use it in GitHub Desktop.
history command
#vi /etc/profile >>
#history
USER_IP=`who -u am i 2>/dev/null | awk '{print $NF}' | sed -e 's/[()]//g'`
HISTDIR=/usr/share/.history
if [ -z $USER_IP ]; then
USER_IP=`hostname`
fi
if [ ! -d $HISTDIR ]; then
mkdir -p $HISTDIR
chmod 777 $HISTDIR
fi
if [ ! -d $HISTDIR/${LOGNAME} ]
then
mkdir -p $HISTDIR/${LOGNAME}
chmod 300 $HISTDIR/${LOGNAME}
fi
export HISTSIZE=4000
DT='date + %Y%m%d_%H%M%S'
export HISTFILE="$HISTDIR/${LOGNAME}/${USER_IP}.history.$DT"
export HISTTIMEFORMAT="[%Y.%m.%d %H:%M:%S]"
chmod 600 $HISTDIR/${LOGNAME}/*.history* 2>/dev/null
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment