Answers for "ubuntu search commandline history"

0

ubuntu command history

cat ~/.bash_history
less ~/.bash_history

# Or use builtin history
history
Posted by: Guest on May-27-2020
0

ubuntu terminal search command

Ctrl + R <command_part> 
# e.g CTRL + R mv 
# will search for recent usage of 'mv' commmand
# Keep pressing CTRL + R to move back to your histroy 
# or CTRL + S to move forward
Posted by: Guest on February-11-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language