SSH: Remove Files and Directories

 

Delete a file without asking for permission with SSH


rm myFile.txt

Delete a file using SSH rm command


rm myFile.txt

Delete a file using WildCard

This will delete all .txt files


rm -f *.txt

Delete all files and the directory with SSH rm


rm -rf /path/to/directory

Delete file and display information


rm -v myFile.txt

Delete file while being prompted for it


rm -i myFile.txt