7. Quitting

Learn how to quit emacs using keyboard shortcuts

Category: Introduction to Terminal

Quitting emacs

To quit emacs, use Ctrl + x, Ctrl + c.

Create a new file /root/0x02_emacs/quitting. using

emacs /root/0x02_emacs/quitting

quitting

Save the file by running Ctrl + x, Ctrl + s

Verify the changes by running the cat command.

cat /root/0x02_emacs/quitting

The above command will display the content of the file, in the terminal.

Table Of Content