how to delete current directory in linux code example
Example 1: how to remove folder and its contents in linux
rm -rf dirname
Example 2: linux remove folder and all his content
rm -rf /path/to/directory/*
Example 3: delete a directory bash script
rmdir dirname
Example 4: remove directory and contents
rm -R directory