Simple question I think.. but I couldnt find it with google..
I have a file test.txt.. it contains;
blah
blah2
blah3
What I want to do is;
cat test.txt and then execute;
./script blah
./script blah2
./script blah3
But I want to do it in one line.. What would be the best ways to do it.. ? I know using && is a option.. but maybe there are better ways to pass the string?