You may find this interesting for navigating -
https://unix.stackexchange.com/questions...d-commands
To reduce retyping of long commands you can use history command like so -
to reduce reading of long history of commands you could just list last 3 or 10, example
would show a list of 3 numbered commands from the history file
if the command you wished to recall was numbered at its beginning example, 381, to run that long command and save retyping it you enter -
It is a chapter ahead of where I am at, but I just gave it a quick try out before posting this. It seems like it would be very useful functionality.
https://unix.stackexchange.com/questions...d-commands
To reduce retyping of long commands you can use history command like so -
Code:
history
to reduce reading of long history of commands you could just list last 3 or 10, example
Code:
history 3
would show a list of 3 numbered commands from the history file
if the command you wished to recall was numbered at its beginning example, 381, to run that long command and save retyping it you enter -
Code:
!381
It is a chapter ahead of where I am at, but I just gave it a quick try out before posting this. It seems like it would be very useful functionality.