Horje
remove all files in a directory linux Code Example
remove all files inside directory linux
# remove everything in a directory 
rm /path/to/dir/*
# remove all sub-directories and files
rm -r /path/to/dir/*
delete all files in linux
Deletes all files in current directory, including hidden

rm -rf {,.[!.],..?}*
ubuntu delete contents of folder
To remove all non-hidden files and sub-directories (along with all of their contents) in a 
directory use:
rm -r /path/to/directory/*
remove all files in a directory linux
rm -rf .trash/*

//trash folder name




Shell

Related
kill apache Code Example kill apache Code Example
powershell on linux Code Example powershell on linux Code Example
create and run docker registry Code Example create and run docker registry Code Example
kubernetes get -o yaml Code Example kubernetes get -o yaml Code Example
azure cli stop aks cluster Code Example azure cli stop aks cluster Code Example

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