I have a list of file names of files i need to delete.

Is there a way to write a batch file that i can specify Linux to delete these files with the given names?

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

You can simply call:

\rm -f $(<file.txt)

To remove all the files listed in a file called file.txt (1 per line of course).

link|improve this answer
I will try your way since the cat way isnt working – mystycs Feb 4 at 8:30
How can i make sure these files are being removed? – mystycs Feb 4 at 8:32
1  
Instead of \rm -f you can use \rm -i and that will show each and every file to you and ask for confirmation before removing. – anubhava Feb 4 at 8:39
1  
I am using -i and -f to force it and show it – mystycs Feb 4 at 8:50
Yup that will work even better for your requirement. – anubhava Feb 4 at 8:58
show 2 more comments
feedback

Say you have a file "file":

foobar.txt
frob
media/music.m3u

Then you can pipe the contents to xargs, which will append the piped-in stuff line per line to the argument specified, and execute it:

cat file | xargs rm

link|improve this answer
feedback

As a bash one liner

cat yourfile.txt |while read line; do rm ${line}; done
link|improve this answer
So i would need to add a bunch of these lines with the file names? And what do i name the batch file and how do i run it in terminal? – mystycs Feb 4 at 8:18
The principle is the same as presnel's I believe (xargs is pretty neat). You said you have a list of files, create some file "yourfile.txt" with all the filenames listed, then run the command at a bash prompt. – Niall Byrne Feb 4 at 8:20
Understood because i have about 30,000 files i need to delete haha. – mystycs Feb 4 at 8:22
I put my text file in the folder of the images. i had it formatted with the image file names for example name.jpg going down line by line. but when i ran it i get this. rm: cannot lstat 6td2h4mk.jpg': No such file or directory` for all of them specified to their file names – mystycs Feb 4 at 8:27
You might need to run fsck. I've also had to put ${line} in quotes before... like: do rm -i "${FILE}"; – Niall Byrne Feb 4 at 8:32
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.