f. Which two commands are used when we want to change the location of the file or folder?
Answers
CD and MV are the two commands used when we want to change the location of the file or folder .
MV - mv (short for move) is a Unix command that moves one or more files or directories from one place to another. If both filenames are on the same filesystem, this results in a simple file rename; otherwise the file content is copied to the new location and the old file is removed. Using mv requires the user to have write permission for the directories the file will move between. This is because mv changes the content of both directories (i.e., the source and the target) involved in the move. When using the mv command on files located on the same filesystem, the file's timestamp is not updated.
CD - The cd command, also known as chdir (change directory), is a command-line shell command used to change the current working directory in various operating systems. It can be used in shell scripts and batch files.
The cd (“change directory”) command is used to change the current working directory in Linux and other Unix-like operating systems. It is one of the most basic and frequently used commands when working on the Linux terminal.
The current working directory is the directory (folder) in which the user is currently working in. Each time you interact with your command prompt, you are working within a directory.
please mark my answers as brainliest