remove from terminal code example

Example 1: delete file linux terminal

rm filename
# or add -rf if you don't want to see confirm

Example 2: remove a file or dir in linux or mac or ubuntu

note:your_file_name can be a dir or a file 

sudo rm -r your_file_name

Example 3: 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 4: terminal delete fle

rm MyFile.rtf