remove dir with files code example
Example 1: bash remove directory
rm -rf directory-name
Example 2: 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 |
# +---------+------------------------------------------------------------------+
Example 3: remove directory linux
rm -rf /path/to/directory/*
Example 4: rm directory linux
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.