bash command remove directory code example
Example 1: bash remove directory
rm -rf directory-name
Example 2: linux remove folder and all his content
rm -rf /path/to/directory
Example 3: bash delete folder
# 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 |
# +---------+------------------------------------------------------------------+
Example 4: remove all directrories in onde command hit
rm -R -- */