Answers for "remove dir and contents unix"

1

how to delete directory in unix

rmdir directoryname  	// This is will delete an empty directory. 

rmdir -r directoryname 	// This is will delete everything in the directory
						// including all files and subdirectories.
Posted by: Guest on May-16-2020
4

remove directory from linux

rm -r filename

rm -rf filename

this command remove the directory and subdirectory forecefully
Posted by: Guest on October-04-2020
3

how to remove directory in linux

#remove a dir in linux command
rm
#after rm type the file or dir name it will remove it
Posted by: Guest on July-07-2021
0

remove a folder in linux command

rm -r dirnameCopy
Posted by: Guest on May-21-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language