Hi,

I have question about QCommandLineParser
I read documentation about this class and I don't see support to several arguments with independent options,
for example in my app I need independent function to filesystem such as

# move [source] [destination] [options]
# move C:/first.txt D:/first.txt --information

# find [filename] [options]
# find somefile --type=txt --casesensitive=true --recursive=true

and many many more functions to filesystem and network.

But QCommandLineParser allow use option only for first argument so if my app name "test.exe" I
can only write such as

test.exe --[options] [optionalargument]

Maybe someone with you know how I can solve this problem?
My app must works similar a bash shell that is to say it must work in loop and operate with many classes,
many functions and many arguments with options.

Regards,