145k views
5 votes
You want to delete all the files in your current folder that starts with word "file" and ends with ".c". The following command will allow you to delete all such files quickly.

mv ./file*.c
options:
a. True
b. False

User Irf
by
8.2k points

1 Answer

3 votes

Final answer:

The correct answer is b. False. The mv command is used to move files and directories, not delete them. To delete files, you would use the rm command.

Step-by-step explanation:

The correct answer is b. False.

The mv command is used to move files and directories, not delete them. To delete files, you would need to use the rm command.

To delete all files in your current folder that start with the word "file" and end with ".c", you would use the command rm file*.c.

User Rmbianchi
by
7.6k points