Originally posted by: esv
you can capture the whole session using script...
script session_log.txt
command1
command2
command3
exit
cat session_log.txt and you'll get all commands and their output.
If you are only interested in the commands issued, check the history file...
in your .profile or /etc/profile setup something like this..
export HISTSIZE=2000
export HISTFILE=~/myhistory.log
then as you execute commands, they will be stored there.
best regards,
esv.
#AIX-Forum