Horje
remove directory in linux Code Example
linux remove folder and all his content
rm -rf /path/to/directory
linux remove folder and all his content
rm -rf /path/to/directory/*
remove directory from linux
rm -r filename

rm -rf filename

this command remove the directory and subdirectory forecefully
remove directory linux
rm -rf /path/to/directory/*
how to remove directory in linux
#remove a dir in linux command
rm
#after rm type the file or dir name it will remove it
remove directory in linux
# REMOVE ALL FILES IN LINUX ON CURRENT PATH
find . -type f -delete

# REMOVE DIRECTORY IN LINUX ON CURRENT PATH
find . -type d -delete

# REMOVE EVERTHING IN EXISTING PATH
find . -delete




Shell

Related
ubuntu syslog.2.gz Code Example ubuntu syslog.2.gz Code Example
Git Commands: Step By Step Guide (Part 1) Code Example Git Commands: Step By Step Guide (Part 1) Code Example
arch linux c# install Code Example arch linux c# install Code Example
find pid of a port and kill the process in linux Code Example find pid of a port and kill the process in linux Code Example
select until end of file vim shortcut for commands Code Example select until end of file vim shortcut for commands Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8