4. Pasting

Learn how to paste text in emacs using keyboard shortcuts

Category: Introduction to Terminal

Pasting files in emacs

To paste text in emacs, use Ctrl + y.

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

emacs /root/0x02_emacs/pasting

pasting

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

Verify the changes by running the cat command.

cat /root/0x02_emacs/pasting

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

Table Of Content