I want to do the following, read line by line of a file and use the value per line as params
FILE="cat test"
echo "$FILE" | \
while read CMD; do
echo $CMD
done
but when I do the echo $CMD, it just returns cat :S
|
|
|
What you have is piping the text You just want:
|
|||
|
|
|
|||||||||||
|
|
It is also very human readable and easy to use due to its simple parameterisation. Format is For example, to
Or to
The You can tailor Use |
|||
|
|
|
If you want to use each of the lines of the file as command-line params for your application you can use the xargs command.
A params file with:
and the file tr.py:
The execution of
gives the result:
|
|||
|
|
|
The correct version of your script is as follows;
However this kind of indirection --putting your command in a variable named FILE-- is unnecessary. Use one of the solutions already provided. I just wanted to point out your mistake. |
|||
|
|