5. Searching

Learn how to search for text in emacs using keyboard shortcuts

Category: Introduction to Terminal

Searching in emacs

To search in emacs use Ctrl + s which searches forward.

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

emacs /root/0x02_emacs/searching

searching

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

Verify the changes by running the cat command.

cat /root/0x02_emacs/searching

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

Table Of Content