Linux basics Flashcards
how do you list file system objects?
ls
how do you print the current directory?
pwd
how do you change directories?
cd
how do you move files from one location to another?
mv
how do you copy files from one location to another?
cp
how do you delete files from the system?
rm
how can you display the amount of free disk space?
df
how can you estimate file space usage?
du
what is nano?
an easy to use command line text editor
what is the vi command?
an old command that supports modal editiing
what is the vim command?
an updated version of vi. supports normal, visual, insert and command line mode.
what is the pico command?
another text editor that provides less features and less complexity
what is the cat command?
used to create, view or concatenate files
what is the find command?
used to search the file system or directory.
what is the grep command?
used to search for the characters within the specified file using regular expressions