Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

the contacts.txt file is displayed in the vim editor. which command do …

Question

the contacts.txt file is displayed in the vim editor. which command do you type in to quickly search the contact information for practicelabs in this file? :/practicelabs :set/practicelabs :s/practicelabs :%s/practicelabs

Explanation:

Brief Explanations

In the Vim editor, the :/text command is used for searching. The :set command is for setting options, :s is for substitution in a single line, and :%s is for substitution throughout the file. To search for "PracticeLabs" in the file, the correct command is :/PracticeLabs.

Answer:

:/PracticeLabs