Skip to content

Instantly share code, notes, and snippets.

@MarkNewcomb1
Created October 11, 2018 16:38
Show Gist options
  • Select an option

  • Save MarkNewcomb1/4ab80f5f8aa9175fa2da92fe284c1d68 to your computer and use it in GitHub Desktop.

Select an option

Save MarkNewcomb1/4ab80f5f8aa9175fa2da92fe284c1d68 to your computer and use it in GitHub Desktop.
CLI shortcuts

^u # Erases input from current location to beginning of line.

^k # Erases input from the current location to the end of the line.

^a # Jump to beginning of line.

^e # Jump to end of line.

^z # Suspend a program that may be running and gives you another shell prompt.

^c # Kill a program that may be running.

^l # Clear the entire screen (works like typing 'clear' ).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment