ubuntu remove non empty directory code example
Example 1: delete non empty directory cmd
rm -rf directoryname
Example 2: how to delete files in linux
rm <file> .. rm -r <file> .. r stands for recursive
rm -rf directoryname
rm <file> .. rm -r <file> .. r stands for recursive