Edit Files in the Terminal Flashcards
What name should the nano configuration file must have?
.nanorc
How do i set tabs to spaces in the nano configuration file?
set tabstospaces
How to set tabs to n number of spaces in the nano configuration file?
set tabsize n
What is the command to stop the execution for n seconds with bash?
sleep n
What is the shortcut to stop a running script?
CTRL + C
What is the command to delete a line in vim?
tapping twice the D key
What is the command to convert tab into spaces in vim?
set expandtab
What name should the vim configuration file must have?
.vimrc
How to set tabs to n number of spaces in the vim configuration file?
set tabstop=n
How to set the indentation to auto with vim?
set autoindent
What is the command to open the tutorial of vim?
vimtutor