deleting files from terminal code example
Example 1: how to remove a file in command line
del filename
Example 2: remove directory from linux
rm -r filename
rm -rf filename
this command remove the directory and subdirectory forecefully
del filename
rm -r filename
rm -rf filename
this command remove the directory and subdirectory forecefully