Table of Contents
- Emacs: quitting
- Solution
- Emacs: undoing
- Solution
- Emacs: searching
- Solution
- Emacs: pasting
- Solution
- Emacs: cutting
- Solution
Emacs: quitting
What is the command to quit Emacs? Write the answer into the file /root/0x02_emacs/quitting..
Solution
cd /root/0x02_emacs (enter)
echo “C-x C-c”>quitting (enter)
Emacs: undoing
What is the command to undo? Write the answer into the file /root/0x02_emacs/undoing..
Solution
cd /root/0x02_emacs (enter)
echo “C-x u”>undoing (enter)
Emacs: searching
What is the command to search forward? Write the answer into the file /root/0x02_emacs/searching..
Solution
cd /root/0x02_emacs (enter)
echo “C-s”>searching (enter)
Emacs: pasting
What is the command to paste? Write the answer into the file /root/0x02_emacs/pasting..
Solution
cd /root/0x02_emacs (enter)
echo “C-y”>pasting (enter)
Emacs: cutting
What is the command to cut an entire line? Write the answer into the file /root/0x02_emacs/cutting..
Solution
cd /root/0x02_emacs (enter)
echo “C-k”>cutting (enter)