hkdb / VBoxMacSetup

Bash Script to Setup VBox MacOS Guest

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Command line argument count

MonkeySon opened this issue · comments

Hi @hkdb,

if I see this right, the check for the number of arguments is wrong:

if [ "$#" -le 4 ] ...

should be:
if [ "$#" -lt 4 ] ...
or
if [ "$#" -le 3 ] ...

or am I missing something here?

BR,
MonkeySon

commented

Thanks!