This command outputs the name of the current working directory
pwd
The are used to modify the behavior of commands.
options
This command outputs the contents of a specified file
cat
This command lists all files and directories in the working directory
ls
This command lists all contents of a directory, including hidden files and directories
ls -a
This command copies files or directories.
cp
This command switches you into the directory you specify
cd
This statement lists files and directories in order by the time they were last modified
ls -t
Special characters like * (which is used to select groups of files), are called____.
Wildcards
This command creates a new directory in the working directory
mkdir
Files starting with this character are normally hidden, and don't appear when using ls alone
dot " . "
This command is used to remove directories
rm -r
This command creates a new file inside the working directory
touch
This command lists all contents, including hidden files and directories, in long format, ordered by the date and time they were last modified.
ls -alt
To rename a file, use the ______ command, with the ________ as the first argument and the _______ as the second argument.
mv, old file, new file
To rename a file, use mv command with the old file as the first argument and the new file as the second argument.