Hello programmers :),
I'm creating a program that requires too many command line parameters to run. I noticed that many system programs in Ubuntu (my operating system) have the feature of auto-completion of the command line parameters. So, for example, if you type the following in Ubuntu:
sudo apt-get i<tab>
you get the full word you need written as
sudo apt-get install
So is it possible to do this in C++? share the internal command-line parameters with console?
Thank you guys for any efforts :)