Answers for "remove directory and contents"

2

remove directory and contents

rm -R directory
Posted by: Guest on June-26-2020
1

remove folder and contents linux

# Remove Single File Using rm:
rm file1.txt
# Remove Directory and it's contents:
rm -r dir1 			# '-r' is short for '-recursive' 
# Remove empty Directory:
rm -d dir1 			# '-d' is short for '-dir'
Posted by: Guest on November-01-2020

Code answers related to "remove directory and contents"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language