remove linux code example
Example 1: delete a directory bash script
rmdir dirname
Example 2: bash delete file
# EXAMPLE
rm YourFileName.ext
# SYNTAX
# rm [option(s)-if-any] <your-file-name-with-extension>
# +---------+------------------------------------------------------------------+
# | 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 all directrories in onde command hit
rm -R -- */
Example 4: shell remove file
rm <file_name>
Example 5: how to delete files in linux
rm <file> .. rm -r <file> .. r stands for recursive