Take Command / TCC Help v. 13.03

+ (pseudovariable)

Hide Navigation Pane

+ (pseudovariable)

Previous topic Next topic No directory for this topic No expanding text in this topic  

+ (pseudovariable)

Previous topic Next topic Topic directory requires JavaScript JavaScript is required for expanding text JavaScript is required for the print function Mail us feedback on this topic!  

Comments (...)

+ is the current command separator. Use this pseudovariable, instead of the actual command separator, if you want your batch files and aliases to work in other users' environment regardless of how the command separator is defined.

 

WARNING: %+ should always be surrounded by spaces.

 

For example, if the command separator is an ampersand [&] (the default in TCC) both of the commands below will display "Hello" on one line and "world" on the next. However, if the command separator has been changed the first command will display "Hello & echo world", while the second command will continue to work as intended.

 

echo Hello & echo world

echo Hello %+ echo world

Comments (...)