You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ MONO WORKDIR('/mydotnet')
76
76
77
77
**EXEFILE** - The .Net program you want to call.
78
78
79
-
**ARGS** - Command line parameters. Up to 40 args can be passed to a .Net program call. Do NOT put double quotes around parms or your program call may get errors because your parameters get compromised with double quotes. Double quotes are added automatically. Although single quotes are allowed around your data: Ex: **'My Parm Value'**
79
+
**ARGS** - Command line parameters. Up to 40 args can be passed to a .Net program call. Do NOT put double quotes around parms or your program call may get errors because your parameters get compromised with double quotes. Double quotes are added automatically inside the CL command processing program. Single quotes are allowed around your parmaeter data: Ex: **'My Parm Value 1' 'My Parm Value 2'**
80
80
81
81
**OUTFILE** - The output file which will receive STDOUT lokking feedback.
82
82
@@ -115,7 +115,7 @@ MONO2 WORKDIR('/mydotnet')
115
115
116
116
**EXEFILE** - The .Net program you want to call.
117
117
118
-
**ARGS** - Command line parameters. A single command line string where each parameter is delimited by double quotes. Double quotes are automatically removed by the .Net program when it processes the arguments. Ex: **'"My Parm Value1" "My Parm Value2"'** Notice the entire command line value is surrounded by single quotes and each parm is delimited with double quotes.
118
+
**ARGS** - Command line parameters. A single command line string where each parameter is delimited by double quotes. The double quotes are automatically removed by the .Net program when it processes the arguments. Ex: **'"My Parm Value1" "My Parm Value2"'** Notice the entire command line value is surrounded by single quotes and each parm is delimited with double quotes.
119
119
120
120
**OUTFILE** - The output file which will receive STDOUT lokking feedback.
0 commit comments