This is what BASH stands for.
What is Bourne Again Shell?
Cd / etc is a command that accomplishes this.
What is change to etc directory that is off the root (Absolute address)?
Touch is a command that is typically known to do this.
What is create an empty file?
The date command should hopefully accomplish this, which is similar to its name... How odd.
What is print the date?
The file command should accomplish this.
What is determine the file type?
This is the command that copies a file.
This is the command that lists the current directory's contents.
What is ls?
Tree is a command that accomplishes this.
What is displays all directories and their contents?
This command, an abbreviation for its accomplishment, generally shows a calendar for the current month.
What is cal?
This type of file perusal filter is generally used for crt viewing.
What is less?
The command cd.. is supposed to accomplish this.
What is move up one directory (relative address)?
This command displays directory results in a long format.
What is ls -l?
This command generally removes a file.
What is rm?
Df is a command that should accomplish this.
What is report the amount of disk space used and available on file systems?
This command generally makes a new directory... haven't found an alternate yet.
What is mkdir?
Alternatively, the command cd ../.. is supposed to accomplish this.
What is move up two directories (relative address)?
The mv command should accomplish this.
What is move a file/directory OR rename a file?
This command removes directories, and may be quite similar to another command...
What is rm -r?
This command should display the amount of free and used memory in the system... I wouldn't know.
What is free?
$HOME is also commonly known as this.
What is your personal home directory?
This is what the pwd command stands for (the acronym).
What is print working directory?
This is the command that creates a symbolic link.
What is ln -s?
This command lists all the files and directories in a directory, including hidden ones.
What is ls -a?
If you think real hard, you may figure out that the exit command should do this.
What is cause normal process termination?
This is the command that creates a hard link between files.
What is ln?