Executing multiple commands in tSystem component
On Windows
On Windows, you can execute multiple system commands at one time on a tSystem component using this format, the different commands are connected with & symbol.
cmd / c mkdir dir1 & mkdir dir2
On Linux
On Linux, you can execute multiple system commands at one time on a tSystem component using this format, the different commands are connected with ; symbol.
touch file1.txt ; touch file2.txt
Comments
Post a Comment