Hello, everyone.
I'd like some advice, please.
I've come across some code by both Brendan Halpin and Alan Riley. It's the second ever posting on this section of the Forum. The code by Brendan is:
and Alan's response is
My question relates to the use of the exclamation mark in the second and third lines of the -foreach- loop.
Can someone point me to documentation about the symbol's function? I've trawled through the Stata documentation and the web with more than enough false positive hits.
Thanks.
I'd like some advice, please.
I've come across some code by both Brendan Halpin and Alan Riley. It's the second ever posting on this section of the Forum. The code by Brendan is:
Code:
foreach topic in topic1 topic2 topic3 { translate `topic'.sthlp `topic'.ps, translator(smcl2ps) replace header(off) logo(off) pagesize(A4) !ps2pdf `topic'.ps !rm `topic'.ps }
Code:
foreach topic in topic1 topic2 topic3 { translate `topic'.sthlp `topic'.ps, translator(smcl2ps) replace header(off) logo(off) pagesize(A4) !ps2pdf `topic'.ps !rm `topic'.ps }
Code:
!ps2pdf `topic'.ps !rm `topic'.ps
Thanks.
Comment