littleIdiot
MIS
Hi,
Any one know how to feed in a list of file names into the stage command rather than give an entire directory?
If you do no know what 'stage' is (like me!), basically I'm trying to create a script that takes a list of file names that are contained in an input file:
and use this list of files to create the following command"
I beive there is a general way in UNIX to do this, something like
I don't know how to do this though - any ideas?!
Cheers,
lil
Any one know how to feed in a list of file names into the stage command rather than give an entire directory?
If you do no know what 'stage' is (like me!), basically I'm trying to create a script that takes a list of file names that are contained in an input file:
Code:
file1.txt
file_a.txt
anotherfile.log
Code:
stage -w file1.txt file_a.txt anotherfile.txt
Code:
stage -w "{%input.file}"
Cheers,
lil