Answers for "linux history command"

1

histroy of commands

Highly recommended command to use in terminal for reviewing commands and
reuse some of them. Just execute in terminal:

history

Also recommended to use together with grep for filtering a specific used command

history | grep "foo*"
Posted by: Guest on October-14-2020
1

linux history command

Just check the enumeration of your commands history and then delete them:
history -d 7 #Deletes seventh command in your history list
Posted by: Guest on November-06-2020
2

find command linux history

history | grep "<what_to_search>"
Posted by: Guest on June-08-2021
0

history command linux

Highly recommended command to use in terminal for reviewing commands and reuse
some of them. Just execute in terminal:

history

Also recommended to use together with grep for filtering a specific used command

history | grep "foo*"
Posted by: Guest on October-14-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language