As far as I know, user-command statapush can be used in seperate way. Usually, I have to seperate do files. For example, statapush1.do and reg1.do
In statapush1.do
Code:
args num

statapush using reg`num'.do,token(**)  message(Congratulations! From reg`num') provider(ifttt)
In reg1.do
Code:
reg y x z
save results`num',replace
when I want to use statapush, I will run
Code:
do statapush1.do 1
However, the output is stored as results.dta not results1.dta.

So how to transfer the args in different do files?