482

The closest I've gotten is

# rm /path/to/directory/*.*

but that doesn't work for files that don't have an extension...

αғsнιη
  • 36,350
user784637
  • 11,465

9 Answers9

535

Linux does not use extensions. It is up to the creator of the file to decide whether the name should have an extension. Linux looks at the first few bytes to figure out what kind of file it is dealing with.

  • To remove all non-hidden files* in a directory use:

    rm /path/to/directory/*
    

    However, this will show an error for each sub-directory, because in this mode it is only allowed to delete files.

  • To remove all non-hidden files and sub-directories (along with all of their contents) in a directory use:

    rm -r /path/to/directory/*
    

* Hidden files and directories are those whose names start with . (dot) character, e.g.: .hidden-file or .hidden-directory/. Note that, in Bash, if the dotglob option (which is off by default) is set, rm will act on hidden files too, because they will be included when * is expanded by the shell to provide the list of filename arguments.

Zanna
  • 72,312
Rinzwind
  • 309,379
332
  • To remove a folder with all its contents (including all interior folders):

    rm -rf /path/to/directory
    
  • To remove all the contents of the folder (including all interior folders) but not the folder itself:

    rm -rf /path/to/directory/*
    

    or, if you want to make sure that hidden files/directories are also removed:

    rm -rf /path/to/directory/{*,.*}
    
  • To remove all the "files" from inside a folder(not removing interior folders):

    rm -f /path/to/directory/{*,.*}
    

Warning: if you have spaces in your path, make sure to always use quotes.

rm -rf /path/to the/directory/*

is equivalent to 2 separate rm -rf calls:

rm -rf /path/to
rm -rf the/directory/*

To avoid this issue, you can use 'single-quotes'(prevents all expansions, even of shell variables) or "double-quotes"(allows expansion of shell variables, but prevents other expansions):

rm -rf "/path/to the/directory/"*

Where:

  • rm - stands for remove
  • -f - stands for force which is helpful when you don't want to be asked/prompted if you want to remove an archive, for example.
  • -r - stands for recursive which means that you want to go recursively down every folder and remove everything.
Zanna
  • 72,312
66

To remove all files in directory (including hidden files and subdirectories) run:

rm -rf /path/to/directory/{*,.*}
23

To delete all files and directories(including the hidden ones) in a directory, you can try the following:

  • delete the folder, then recreate it

    rm -rf dir_name && mkdir dir_name
    
  • use find

    find dir_name -mindepth 1 -delete  
    

Here we specify -mindepth 1 to exclude the directory dir_name itself.
Take a look at the following link:
https://unix.stackexchange.com/questions/12593/how-to-remove-all-the-files-in-a-directory

muru
  • 207,228
zeekvfu
  • 451
  • 4
  • 4
13

If you want to delete only files in /path/to/directory you can do

find /path/to/directory -type f -print0| xargs -0 rm 

or

find /path/to/directory -type f -exec rm '{}' \;

You can do loads with find, the advantage is you can list what is found without piping it to rm so you can see what will be deleted before you start.

αғsнιη
  • 36,350
7

If you also want to remove all subdirectories and the directory itself, you can use rm -rf /path/to/directory. But always double-check your line before pressing return, rm -rf can cause lots of havock as well, e.g. if you accidentally insert a space after the first slash while having superuser permissions...

3

Since this question is constantly at the top of Google when I search for this myself:

The other answers suffer from different problems:

  1. Some of them include . and .. which is noisy, confusing, and annoying.

  2. Some of them forget hidden files (files beginning with a dot).

  3. They don't delete in a correct (deepest-first) order to allow directory deletion.

  4. They descend into other (mounted) file systems, which is often undesired.

  5. They're difficult to extend properly with extra parameters (more on that below).

So, to RECURSIVELY delete all files AND folders in a directory, do this:

find "${DIR}" -xdev -mindepth 1 -printf "%d\t%y\t%p\0" | sort -z -r -n | cut -z -f3- | xargs -0 -r -- rm -d --

Note that I added an -xdev argument to prevent descending into mounts (like /proc etc.).

Why not -depth or -delete?

Despite people constantly downvoting me for this, those methods have a downside: it doesn't seem like they're extensible enough to allow -pruneing a subdirectory (without introducing more problems). By contrast with this method, you could insert

-not \( -path "${DIR}/subdir" -prune \)

before the -mindepth argument to exclude subdir from having its contents deleted.

user541686
  • 4,347
2

You can cd into the directory and then run the command rm *.* just like in DOS if you remember.

Eric Carvalho
  • 55,453
V K Mavani
  • 29
  • 1
1

To delete current directory, you could for example use rm -d ./*

-d tells to delete directories as well.

arviman
  • 141