I am attempting to use rcorder to give me a list of files to run but when I try to use rcorder to find the file and requirements, I cannot get the results I want.
That is to say, when I issue something like:
I was expecting (hoping for) a list back such as (-i.e. have the rcorder tool FIND the requirements):
I have the following (simplified, of course):
I have read the manual and tried a slew of different things all to no avail (checked my spelling, checked syntax, tried -k, etc). I haven't looked through the rcorder code yet, but does anyone know if this is beyond the scope of rcorder (-i.e. does it need a list of files as in 'rcorder foo.sh bar.sh' and only provide a list based on that argument, or can it locate a requirement without the argument and I am setting it up/calling it wrong)?
That is to say, when I issue something like:
Code:
rcorder /path/to/files/foo.sh
I was expecting (hoping for) a list back such as (-i.e. have the rcorder tool FIND the requirements):
Code:
foo.sh
bar.sh
I have the following (simplified, of course):
Code:
#!/bin/sh
# PROVIDE: foo
# REQUIRE: bar
echo "I am foo"
Code:
#!/bin/sh
# PROVIDE: bar
# REQUIRE:
echo "I am bar"
I have read the manual and tried a slew of different things all to no avail (checked my spelling, checked syntax, tried -k, etc). I haven't looked through the rcorder code yet, but does anyone know if this is beyond the scope of rcorder (-i.e. does it need a list of files as in 'rcorder foo.sh bar.sh' and only provide a list based on that argument, or can it locate a requirement without the argument and I am setting it up/calling it wrong)?