Anatomy of a Unix Command
Last updated
Was this helpful?
Was this helpful?
# display last typed commands
history #display the last n typed commands
history n
#execute command n
!n#execute last command in the list
!!# recall and execute the n-th last command
!-n# recall the last 5 typed commands
history 5 # recall and execute the 3rd last command
!-3# recall and execute command number 120
!120