gsscoder / commandline

Terse syntax C# command line parser for .NET with F# support
1.63k stars 293 forks source link

Syntax for the path - clarification #478

Open ajtruckle opened 7 years ago

ajtruckle commented 7 years ago

Hi

I used:

file -c".\TheFile.xml"

It was fine.

I tried:

file -c=".\TheFile.xml"

Not what I expected. I thought it would strip the = character. Is that right?

ajtruckle commented 7 years ago

It seems that -- options can use a = or a space character but - options must use no character or a space.

--createevents="file.xml" --createevents "file.xml" -c"file.xml" -c "file.xml"