Is there a way in Bash to recall the argument of the previous command?
I usually do vi file.c followed by gcc file.c.
vi file.c
gcc file.c
Is there a w
In the command line you can press esc-. or alt+.
It cycles through the last argument of your previous commands.