Deleting a file using the command line
The rm
command deletes a file. It takes the path to the file as a parameter:
rm dir/file.txt
You can delete multiple files by listing them separated by spaces:
rm dir/file1.txt dir/file2.txt
Use the appropriate command to delete one of your files.