Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
System command
Maninder_IBM
Anyone know how to issue a system command from a template .tpl file?
Find more posts tagged with
Comments
Gregg Faus
You can use the "system" function or use a tic mark (`) between the call you trying to make within a PERL section of your TPL.
For example:
`command`
or
system("command")
Or you could use the IW tag as well:
<iw_system command='command here'/>
Maninder_IBM
Thanks,
The system command didn't work for some reason, but was fine using the tic.