Before I go too much into the rabbit hole
Does anyone know of a command that parses all options in a command? (regardless of the command type?)
For example, if I type
cmd y x t, hc1 cluster(asd) xline(123) twoway(scatter v1 c2)
It would create a local (r() or s()) with something like this:
s(hc1) hc1
s(cluster) asd
s(xline) 123
s(twoway) scatter v1 c2
And, perhaps with a list of all these options
s(optlist) hc1 cluster xline twoway
Thank you!
Does anyone know of a command that parses all options in a command? (regardless of the command type?)
For example, if I type
cmd y x t, hc1 cluster(asd) xline(123) twoway(scatter v1 c2)
It would create a local (r() or s()) with something like this:
s(hc1) hc1
s(cluster) asd
s(xline) 123
s(twoway) scatter v1 c2
And, perhaps with a list of all these options
s(optlist) hc1 cluster xline twoway
Thank you!

Comment