Linux Cheat Sheet
Working With Bash History command
History command
history
or you can use
cat .bash_history
output will be like this
The number of commands that can be saved in bash history file is controlled by HISTFILESIZE. this is an env variable.
echo $HISTFI...
hackonbyte.in2 min read