Hello,
What is the proper way to check for the number of command line parameters in Windows?
In Unix there is something like:
# If the number of command-line parameters
# is not 10, then do something.
if [[ $# -ne 10 ]] then
...
fi
How do we "translate" that into a Windows batch file code?
Thanks.
<ruse7013>
What is the proper way to check for the number of command line parameters in Windows?
In Unix there is something like:
# If the number of command-line parameters
# is not 10, then do something.
if [[ $# -ne 10 ]] then
...
fi
How do we "translate" that into a Windows batch file code?
Thanks.
<ruse7013>