Linux terminal delete file

Code examples

11
0

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                            |
# +---------+------------------------------------------------------------------+
7
0

delete file linux terminal

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

delete all files with specific name ubuntu

find -type f -name '*text*' -delete
2
0

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
2
0

how to delete file using bash

rm <filename>
rm something.html
rm ./dist/something.html
0
0

linux terminal delete file

rm filename

Similar pages

Similar pages with examples

In other languages

This page is in other languages

Русский
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Íslensk
..................................................................................................................