If I define
static struct option long_option[]={ {"add", 1, 0, 'a'} }
can I store two values in the optarg? This is the code what I want to use:
./a.out --add Tommy 123-123-123
and I would like to store two values, Tommy and 123-123-123 by using --add once.