Hi,
My question is probably an old one. Unfortunately I was not able to find any answers. Basically, how can I break up the command line into an array of arguments? For example:
cmd123 a 'b c' 'd e f'
should have three arguments (a, 'b c', 'd e f').
What would be a good way of doing it?
Thanks a lot!!!