[PLUG] Copying File to Bash Command Line

2011-05-23 Thread Rich Shepard
I have an application whose source code I download weekly from the subversion repository, configure, build, and install. The configuration options are many and I keep them in a text file, then copy them line-by-line to the command line. Is there a way to include the entire configuration-options

Re: [PLUG] Copying File to Bash Command Line

2011-05-23 Thread Paul Heinlein
On Mon, 23 May 2011, Rich Shepard wrote: I have an application whose source code I download weekly from the subversion repository, configure, build, and install. The configuration options are many and I keep them in a text file, then copy them line-by-line to the command line. Is there a

Re: [PLUG] Copying File to Bash Command Line

2011-05-23 Thread Carlos Konstanski
On 05/23/2011 09:41 AM, Paul Heinlein wrote: On Mon, 23 May 2011, Rich Shepard wrote: I have an application whose source code I download weekly from the subversion repository, configure, build, and install. The configuration options are many and I keep them in a text file, then copy them

Re: [PLUG] Copying File to Bash Command Line [FIXED]

2011-05-23 Thread Rich Shepard
On Mon, 23 May 2011, Paul Heinlein wrote: If you always download the Subversion repository to the same directory, then just keep your configure options in a bash shell script. E.g., #!/bin/sn That's a new binary, eh? svn export -q --force http://blah/blah/blah /your/build/directory cd

Re: [PLUG] Copying File to Bash Command Line

2011-05-23 Thread Robert Citek
On Mon, May 23, 2011 at 11:45 AM, Carlos Konstanski ckonstan...@pippiandcarlos.com wrote: On 05/23/2011 09:41 AM, Paul Heinlein wrote: On Mon, 23 May 2011, Rich Shepard wrote: ... Is there a way to include the entire configuration-options file on the command line (after ./configure, or