how to delete a file using terminal code example
Example 1: delete file linux terminal
rm filename
# or add -rf if you don't want to see confirm
Example 2: how to delete file using bash
rm <filename>
rm something.html
rm ./dist/something.html
Example 3: terminal delete fle
rm MyFile.rtf