Hi everyone, 
I wonder if there is a way to pass parameters to drscl. What I specifically want to do is calling drscl from a shell script and read/save some data. I want to schedule a measurement. Therefore I need to call drscl from the command line using some parameters. 
It would look something like this; 
#!/bin/bash 
for i in {0..100} 
  do 
    echo "Reading $i" 
    ./drscl read 0 0 test.xml 
    sleep 1 
done 
 
This doesn't work of course. drscl won't take arguments from the command line. Can you suggest a way to do this please? 
Thank you.  |