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
|
let's say I want to run instead of typing
thankyou | ||||
|
feedback
|
Command
Explanation
| |||||
feedback
|
|
You can use one of:
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 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 This is actually a fairly common way of killing processes under UNIX lookalikes. A daemon (like
| ||||
|
feedback
|
|
Another option is xargs:
I personally find this version easier to read, especially if you're doing more than just catting a file. From the man page:
In plain speak, xargs will execute ./program on each line/word that is being piped to it. See man xargs for more options. | ||||
|
feedback
|