remove file directory linux code example
Example 1: how to delete particular type file recursively in linux
find . -type f -name '*.o' -delete
Example 2: how to remove file from directory in linux
rm /home/harry/ascii.txt
Example 3: how to delete files in linux
rm <file> .. rm -r <file> .. r stands for recursive