I am currently using Parrot Security. However, in Kali when I would issue commands in my terminal it would remember them and when I would go to type another command in my terminal that was similar it would prompt me to see if I wanted to use a previous command kind of like spell check. You can also scroll through the commands using the arrow keys. So I was just wondering if there is a way I can make my terminal in parrot do the same thing? Thanks for any help
- shell:
/bin/bash
- Histsize=1000
- Histfile
/home/legionaire/.bash_history
I can open the bash history file and see all my commands. I just like in Kali how it comes up as you type something similar and you can scroll with the arrows.
echo $SHELL
. Read theman
page of your shell (man ${SHELL##*/}
, about "Command History". What are "`echo "HISTSIZE=$HISTSIZE, HISTFILE=$HISTFILE"? [Edit] your question to reply, don't reply via comment. Not saving command history could be seen as a "security feature". I'm unfamiliar with Parrot Security. – waltinator Sep 20 '21 at 00:01