I want to run doskey macros one after other. Since
doskey a = "some big command"
doskey b = "other big command"
..
..
and a && b
does not work, I do
for /l %i in (1 1 1) do (
a
b
...)
I want to replace this using a small command like run (a b c d)
or
run (
a
b
)
How do I do it? doskey run = for /l %i in (1 1 1) do
does not work.