delete directory bash command code example

Example 1: how to remove folder and its contents in linux

rm -rf dirname

Example 2: delete a directory bash script

rmdir dirname

Example 3: 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'

Example 4: bash remove directory

# EXAMPLE
rm -r YourFolderName

# SYNTAX
# rm [option(s)-if-any] <folder(s)-to-remove-including-contents>

# +---------+------------------------------------------------------------------+
# | OPTIONS |  DESCRIPTION                                                     |
# +---------+------------------------------------------------------------------+
# |   -f    |  Force: ignore nonexistent files, never prompt                   |
# |   -i    |  Interactive: prompt before every removal                        |
# |   -I    |  Interactive: only prompt before removing more than three files  |
# |   -r    |  Recursive: remove directories and their contents recursively    |
# |   -v    |  Verbose:  explain what is being done                            |
# +---------+------------------------------------------------------------------+

Tags:

Misc Example