xxxxxxxxxx
# plz suscribe to my youtube channel -->
# https://www.youtube.com/channel/UC-sfqidn2fKZslHWnm5qe-A
#remove a dir in linux command
rm
#after rm type the file or dir name it will remove it
xxxxxxxxxx
rm -r filename
rm -rf filename
this command remove the directory and subdirectory forecefully
xxxxxxxxxx
#In linux Terminal:
#To make a directory:
mkdir directory_name
#To delete a directory:
rmdir directory_name
xxxxxxxxxx
To remove an empty directory, use either rmdir or rm -d followed by the directory name:
rm -d dirname rmdir dirname.
To remove non-empty directories and all the files within them, use the rm command with the -r (recursive) option:
rm -r dirname.