What are four important features to look for in a text editor? *1.) code completion;
2.) syntax highlighting;
3.) a nice variety of themes (to reduce eye strain and fatigue); and
4.) the ability to choose from a healthy selection of extensions available when you need them.*
What do the following commands do?
pwd Print working Directory - tells you what your current or present working directory is.
ls This is short for “list”.
cd This stands for “change directory” and was one of the first things I personally learned when I was a kid navigating in DOS.
mkdir *this stands for “make directory”
touch this creates and modifies files in the system
rm This stands for remove a file - you can remove a file from a directory.
rm -rf theName Will remove a directory recursively and by force.
Can you explain what is happening in the following scenario if these commands and arguments are entered into the command line? (Arguments are extra instructions given to a command.)