HOWTO Remove a File or Directory Recursively
# rm filename (removes a single file)# rm filename? (matches single character. e.g. filename1, filename2,filename3)# rm filename[1-5] (matches filename1 thru filename5)# rm filename* (removes everything that matches filename. e.g.filename122, filename222, filename.backup) # rm -rf /home/esofthub/directoryname (the -r… Read More »HOWTO Remove a File or Directory Recursively