What does Ctrl+C do in Ubuntu Terminal?

19,348

Solution 1

  • Ctrl+C is abort in UNIX:

    In POSIX systems, the sequence causes the active program to receive a SIGINT signal. If the program does not specify how to handle this condition, it is terminated. Typically a program which does handle a SIGINT will still terminate itself, or at least terminate the task running inside it.

  • Ctrl+V in UNIX:

    Unix interactive terminals use Control-V to mean "the next character should be treated literally" (the mnemonic here is "v is for verbatim"). This allows a user to insert a literal Control-C or Control-H or similar control characters that would otherwise be handled by the terminal.

This is in the shell and it's just defaults. When running a program, it is dependent on the program what these do!

Solution 2

Ctrl+C sends a terminating signal to the current process running.

To copy or paste in the terminal, press Ctrl+Shift+C or Ctrl+Shift+V.

Share:
19,348
slhck
Author by

slhck

Updated on September 18, 2022

Comments

  • slhck
    slhck over 1 year

    Does anyone know what Ctrl+C and Ctrl-V do in Ubuntu Terminal? Since they don't copy/paste, is there any particular functionality to these buttons?

    When I press those shortcut, it writes ^C and ^V.

    I'm worried because I was working on a little PHP program, and I'm editing from terminal. I'm a control freak, and I would hate if those buttons did something I'm not aware of.

    • Danilo Piazzalunga
      Danilo Piazzalunga over 12 years
      This question belongs to askubuntu.com
    • Cymen
      Cymen over 12 years
      More appropriate site for this question: askubuntu.com
  • Rob
    Rob over 12 years
    The signal is SIGINT.
  • Chris Page
    Chris Page over 12 years
    Pedantry: Since there is a SIGABRT that signals an "abort", I would change "is abort in UNIX" to "is 'interrupt' in UNIX".
  • a11r
    a11r over 4 years
    Ctrl+C don't stop "what ever program you are running" it's false, it just send a SIGINT signal to the process on the foreground. If the process is not defined to stop on SIGINT, the process stay alive.