let's say I want to run ./program with a string argument

instead of typing ./program string each time, how can I do ./program <file> where <file> is a file that contains string?

thankyou

link|improve this question
feedback

4 Answers

up vote 9 down vote accepted

This should do the trick:

./program `cat file`
link|improve this answer
feedback

Command

./program "$(< file)"

Explanation

  1. $(cmd) runs a command and converts its output into a string. $(cmd) can also be written with backticks as `cmd`. I prefer the newer $(cmd) as it nests better than the old school backticks.

  2. The command we want is cat file. And then from the bash man page:

    The command substitution $(cat file) can be replaced by the equivalent but faster $(< file).

  3. The quotes around it make sure that whitespace is preserved, just in case you have spaces or newlines inside of your file. Properly quoting things in shell scripts is a skill that is sorely lacking. Quoting variables and command substitutions is a good habit to good into so you don't get bit later when your file names or variable values have spaces or control characters or other weirdnesses.

link|improve this answer
Re: point #2. $(< file) is shorthand for $(cat file), not what you said. e.g. You cannot use "< file" as a replacement for "cat file" in general, only in $(...) – camh Nov 22 '10 at 4:24
@camh: You're right. I've re-worded #2. – John Kugelman Nov 22 '10 at 4:27
feedback

You can use one of:

./program $(cat file)
./program "$(cat file)"

The latter is useful if there may be multiple words in the file and you want them to be treated as a single argument. In any case, I prefer the use if $() to backticks simply due to it's ability to nest (which is probably not a requirement in this case).

Also keep in mind that this answer (and others) are more related to the shell in use rather than Linux itself. Since the predominant and the best :-) shell seems to be bash, I've coded specifically for that.

This is actually a fairly common way of killing processes under UNIX lookalikes. A daemon (like cron) will write its process ID to a file (like /var/cron.pid) and you can signal it with something like:

kill -HUP $(cat /var/cron.pid)
link|improve this answer
feedback

Another option is xargs:

cat file | xargs ./program

I personally find this version easier to read, especially if you're doing more than just catting a file.

From the man page:

xargs reads items from the standard input, delimited by blanks or newlines, and executes the command one or more times with any initial-arguments followed by items read from standard input.

In plain speak, xargs will execute ./program on each line/word that is being piped to it.

See man xargs for more options.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.