delete files terminal code example
Example 1: terminal remove files starting with
find . -name 'name*' -exec rm {} \;
Example 2: how to delete files in linux
rm <file> .. rm -r <file> .. r stands for recursive
Example 3: terminal delete fle
rm MyFile.rtf
Example 4: how to delete file using terminal command?
rm file_1.txt
#Works in the current directory