Answers for "delete file terminal linux"

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
Posted by: Guest on May-11-2020
2

delete all files with specific name ubuntu

find -type f -name '*text*' -delete
Posted by: Guest on June-08-2020
1

linux terminal delete file

rm filename
Posted by: Guest on March-11-2021
12

how to delete files in linux

rm <file> .. rm -r <file> .. r stands for recursive
Posted by: Guest on November-14-2019

Code answers related to "delete file terminal linux"

Python Answers by Framework

Browse Popular Code Answers by Language