PDA

View Full Version : elseed commandline params


oiler
05-14-2003, 10:31 AM
When using elseed and running the below commandline from rc.sysinit, do you have to use the ' on the front and end of the params, like this:

/hack/elseed -i 'AT+FCLASS=8;AT+VCID=1' -l '/hack/callerid.log'

or would it be like this:

/hack/elseed -i AT+FCLASS=8;AT+VCID=1 -l /hack/callerid.log

I was not sure if the elseed docs were saying to specifically use the ' or not.

Thanks.

superzap
05-14-2003, 10:44 AM
Use the one with the quotes since there's a semicolon in the parm. Quotes should always work on parms and should prevent bash from interpreting special characters as something they aren't intending to be.

oiler
05-14-2003, 12:13 PM
Thanks for the info superzap!