134

I want to see what files will be deleted when performing an rm in linux. Most commands seem to have a dry run option to show just such information, but I can't seem to find such an option for rm. Is this even possible?

Cory Klein
  • 18,911

4 Answers4

174

Say you want to run:

rm -- *.txt

You can just run:

echo rm -- *.txt

or even just:

echo *.txt

to see what files rm would delete, because it's the shell expanding the *.txt, not rm.

The only time this won't help you is for rm -r.

If you want to remove files and directories recursively, then you could use find instead of rm -r, e.g.

find . -depth -name "*.txt" -print

then if it does what you want, change the -print to -delete:

find . -depth -name "*.txt" -delete

(-delete implies -depth, we're still adding it as a reminder as recommended by the GNU find manual).

Mikel
  • 57,299
  • 15
  • 134
  • 153
  • find is a good choice IMO. And if you want a graphical presentation use tree. – noisebleed Jul 25 '12 at 09:49
  • 2
    Almost perfect. find . -name "*.txt" -delete doesn't seem to be recursive tho. Removed all the files, but didn't remove directories that were listed in -print – Oscar Godson Jul 21 '13 at 09:17
  • 1
    @OscarGodson Assuming the directories were left empty after removing the files, you can remove them with find . -type d -empty -delete – datguy Jan 03 '17 at 20:08
  • 1
    @OscarGodson - find will not delete directories that still contain files (equivalent to rm dir/ without -r). You would have to empty the directory first - or use find to -exec rm with the appropriate options to do this. e.g. find . -depth -name "*.txt" -exec rm -r {} + – shalomb Apr 17 '17 at 19:08
  • 1
    Using the echo rm *.txt method seems to have a drawback. It presents the results in a concatenated list (a long string with one file after the previous one), as opposed to a vertical list. Is there any way to get the output to display in a vertical list (one file per line) ? (UPDATE: I see that the find method does what I have requested. So I'll run with that.) – inspirednz Oct 10 '17 at 04:27
  • @inspirednz You could also use printf "%s\n" *.txt, or any similar variant. – Mikel Oct 10 '17 at 05:39
  • Life suddenly makes sense! – Shanimal Oct 05 '18 at 20:32
30

You can say:

rm -i

to run it in interactive mode, so rm will prompt you to confirm whether each file should be deleted. You could just answer no to each file to see which ones would be affected.

Justin Ethier
  • 16,806
12

You can use ls to list all the files that will be removed by rm:

ls ../path/*.txt

If you need to list to view the files that will be deleted with a recursive rm, then use the -R flag with ls:

ls -R ../path/*.txt
5

Just wanted to belatedly point out a handy solution that Joshua mentioned in the comments:

yes n | rm -i myFile1 myFile2 myFile3

This runs rm in interactive mode, which prompts a y/n response for each file it would delete, but via yes n it automatically declines this prompt for each file. The output isn't super pretty, but is parseable with a little cleanup.

Good Pen
  • 205
Cory Klein
  • 18,911