Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
how to copy files by a pre-made list?
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Other Things Gentoo
View previous topic :: View next topic  
Author Message
Pretty Little Ditty
n00b
n00b


Joined: 07 Oct 2005
Posts: 13

PostPosted: Wed Nov 23, 2005 12:05 am    Post subject: how to copy files by a pre-made list? Reply with quote

I tried to search the forum, and although I found some threads that are somehow related to my (very simple :wink: ) question, I couldn't reall understand what to do. :?

I already have my list of the files ready. so, Iv'e tried this:
Code:
cat list.txt | xargs -0 cp --target-dir=/home/etc..etc...

but as you know, xargs gets the list as one big line. how do I make it read one line after the other?
Back to top
View user's profile Send private message
codergeek42
Bodhisattva
Bodhisattva


Joined: 05 Apr 2004
Posts: 5142
Location: Anaheim, CA (USA)

PostPosted: Wed Nov 23, 2005 12:07 am    Post subject: Reply with quote

Something like the following may work (untested):
Code:
while read LINE; do
   cp "$LINE" /path/to/target;
done < /path/to/files_list.txt

_________________
~~ Peter: Programmer, Mathematician, STEM & Free Software Advocate, Enlightened Agent, Transhumanist, Fedora contributor
Who am I? :: EFF & FSF
Back to top
View user's profile Send private message
Pretty Little Ditty
n00b
n00b


Joined: 07 Oct 2005
Posts: 13

PostPosted: Wed Nov 23, 2005 12:13 am    Post subject: Reply with quote

Thank You!! :P it works.
Back to top
View user's profile Send private message
Genone
Retired Dev
Retired Dev


Joined: 14 Mar 2003
Posts: 9555
Location: beyond the rim

PostPosted: Wed Nov 23, 2005 3:46 am    Post subject: Reply with quote

or a bit easier:
Code:
cp $(< path/to/filelist.txt) /targetdir
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Other Things Gentoo All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum