Question 91
In the vi editor, how can commands such as moving the cursor or copying lines into the buffer be issued multiple times or applied to multiple rows?
Question 92
Which of the following commands print the current working directory when using a Bash shell? (Choose two.)
Question 93
Consider the following output from the command ls -i:

How would a new file named c.txt be created with the same inode number as a.txt(Inode 525385)?
ln -h a.txt c.txt

How would a new file named c.txt be created with the same inode number as a.txt(Inode 525385)?
ln -h a.txt c.txt
Question 94
Which command will disable swapping on a device? (Specify ONLY the command without any path or parameters.)
Question 95
From a Bash shell, which of the following commands directly execute the instructions from the file /usr/ local/bin/runme.shwithout starting a subshell? (Choose two.) source /usr/local/bin/runme.sh
