Lesson 5: Managing Files and Directories Flashcards

1
Q

Text Editor

A

An application that enables you to view, create, or modify the contents of text files

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Vim

A

The default text editor in most Linux Distributions
extended version of vi
favored by system administrators and software engineers
Vim command

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Emacs

A

A flexible, powerful, and popular text editor used in Linux and Unix

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

gVim

A

The graphical version of the Vim editor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

gedit

A

A simple yet powerful GUI-based text editor used in the GNOME desktop environment

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

GNU nano

A

A small, user-friendly text editor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Vim Modes

A

Insert : insert text by typing
Execute : Execute commands within the editor
Command : Perform different editing actions using single keystrokes
Visual : Highlight or select text for copying, deleting, and so on

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Execute Mode Commands

A

:w - saves a file with a file name
:q - Quits when no changes have been made after the last save
:q! - Quits, ignoring the changes made
:qa - Quits the multiple files
:wq - saves the current files and quits
:e! - Reverts to the last saved format without closing the file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Motions

A

single-key shortcuts that are used to navigate through files in command mode

How well did you know this?
1
Not at all
2
3
4
5
Perfectly