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?
|
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?
| |||
|
feedback
|
|
You can simply call:
To remove all the files listed in a file called file.txt (1 per line of course). | |||||||||||||||
feedback
|
|
Say you have a file "file":
Then you can pipe the contents to
| |||
|
feedback
|
|
As a bash one liner
| |||||||||||
feedback
|