Question
Move the my_files folder (remember that this is the new name for the personal folder) to the deleted folder.
Provide your Answer here:
Provide your Answer here:
Answers
Assuming that the "deleted" folder is located in the home directory, you can use the following command to move the "my_files" folder to the "deleted" folder:
```
mv ~/my_files ~/deleted/
```
This command uses the "mv" command to move the "my_files" folder from the home directory (represented by the tilde symbol "~") to the "deleted" folder, which is also located in the home directory.
```
mv ~/my_files ~/deleted/
```
This command uses the "mv" command to move the "my_files" folder from the home directory (represented by the tilde symbol "~") to the "deleted" folder, which is also located in the home directory.
Related Questions
Create folder called old_files inside of the personal folder and copy the letter_of_engagement.txt t...
Q02. (1 mark) Create folder called old_files inside of the personal folder and copy the letter_of_en...
Rename the personal folder into my_files (make sure the folder stays in the Midterm folder).
At the command prompt:
Change to your Downloads folder inside your home folder.
Inside your Down...