Removing Entire Unix Directory
How to silently delete a directory, sub-directories and files on Unix
On a Unix system, the following command line will silently (no prompts or messages) remove a directory, along with all the sub-directories and files...
rm -rf {name}
Added 03/04/2019 15:54