Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

delete files 1

Status
Not open for further replies.

jestrada101

Technical User
Mar 28, 2003
332
Hello,

I have a file with a list of files..

e.g.
/export/home/test
/export/home/test/this.txt

How can I delete this using the file?

Thanks
je
 
[cpurcell@linux test]$ touch a b c
[cpurcell@linux test]$ ls
a b c file
[cpurcell@linux test]$ cat file
/tmp/test/a
/tmp/test/b
/tmp/test/c
[cpurcell@linux test]$ cat file | xargs rm
[cpurcell@linux test]$ ls
file


ChrisP
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top