Re: apt-get install -- packet list from a file

2010-11-03 Thread Boyd Stephen Smith Jr.
In , Felipe Sateler wrote: >On 11/03/2010 03:01 AM, Brian Ryans wrote: >> Quoting kuLa on 2010-11-01 06:02:50: > apt-get install `sed "s/\n/ /" /your/listfile` > is much better. >>> >>> cat file-list|xargs apt-get -y install >> >> apt-get -y install foo >> (read db; grab foo; install foo;

Re: apt-get install -- packet list from a file

2010-11-03 Thread Felipe Sateler
On 11/03/2010 03:01 AM, Brian Ryans wrote: > Quoting kuLa on 2010-11-01 06:02:50: >>> cat file-list|xargs apt-get -y install apt-get install `sed "s/\n/ /" /your/listfile` >>> is much better. >> >> From my experience it's doing lookup only once cause you're passing >> package names only o

Re: apt-get install -- packet list from a file

2010-11-03 Thread Brian Ryans
Quoting kuLa on 2010-11-01 06:02:50: > > cat file-list|xargs apt-get -y install > >> apt-get install `sed "s/\n/ /" /your/listfile` > > > >> is much better. > > From my experience it's doing lookup only once cause you're passing > package names only once at start. ACK. > cat file-list|xargs apt

Re: apt-get install -- packet list from a file

2010-11-01 Thread Boyd Stephen Smith Jr.
You hijacked an existing thread. Please don't do that in the future. Changing the subject line in not sufficient to create a new thread. You must use the "New Message" function of your UA not the "Reply" function. When you use the reply function, your UA inserts headers like this: Reference

Re: apt-get install -- packet list from a file

2010-11-01 Thread Gilles Mocellin
Le lundi 01 novembre, Steve Kemp écrivit : [...] > apt-get install $(cat file-list) A shortcut, shell only, without forking 'cat' : apt-get install $( signature.asc Description: Digital signature

Re: apt-get install -- packet list from a file

2010-11-01 Thread Steve Kemp
On Mon Nov 01, 2010 at 11:13:53 +0100, getting.li...@googlemail.com wrote: > I want to install many packets at once with apt-get. > So I wrote a file, like > > file-list: > > htop > vim > apache2 apt-get install $(cat file-list) Steve -- Let me steal your soul? http://stolen-souls.com -- To

Re: apt-get install -- packet list from a file

2010-11-01 Thread kuLa
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 > I think this should help > cat file-list|xargs apt-get -y install > >> wow this will got very solw, keep search the whole database each luanch. >> i think > >> apt-get install `sed "s/\n/ /" /your/listfile` > >> is much better. - From my experien

Re: apt-get install -- packet list from a file

2010-11-01 Thread kuLa
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 01/11/10 10:13, getting.li...@googlemail.com wrote: > Hi list, > > I want to install many packets at once with apt-get. > So I wrote a file, like > > file-list: > > htop > vim > apache2 > > apt-get shall use this file as it's input eg apt-get in

Re: apt-get install -- packet list from a file

2010-11-01 Thread Mark Allums
On 11/1/2010 5:13 AM, getting.li...@googlemail.com wrote: Hi list, I want to install many packets at once with apt-get. So I wrote a file, like file-list: htop vim apache2 apt-get shall use this file as it's input eg apt-get install < file-list (notworking) does anyone knows a solution? hei