Re: Run command on sqlplus repetitively without reconnection

[...]
} The part I'm not completely sure about is the double-dash (--). 
[...]

"--" separates options from arguments:


$ print "-1"
ksh: print: -1: unknown option
$ print -- "-1"
-1


Regards
Dimitre

Other related posts: