Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 505 Bytes

16_navigate_cli_2.md

File metadata and controls

11 lines (9 loc) · 505 Bytes

Navigating the Command Line 2.0

  • !* - expands to all arguments of the previous command
  • !$ - expands to the end (last argument) of the previous command
  • CTRL-z - suspend a running command
  • bg - continue running a suspended command in the background
  • fg - foreground a suspended or backgrounded command
  • & at the end of a command - run it backgrounded to begin with

Back: Customizing Your Shell Forward: More Commands & Tools