SET BACKTICKS

From Lianjapedia
Jump to: navigation, search

Purpose

Enable or disable `backticks` command line substitution

Syntax

SET BACKTICKS ON | OFF | (<expL>)

See Also

SET MACROS

Description

If SET BACKTICKS is ON, then `backticks` command line substitution is enabled. The command itself must be a valid OS command that produces output.

If SET BACKTICKS is OFF, then no command line substitution is performed.

By default BACKTICKS is OFF. For security reasons BACKTICKS is always OFF in the Lianja Cloud Server.

From Lianja v5.3.

Example

set backticks on
? "The date is `date /t`"
The date is 02/02/2020
 
set backticks off
? "The date is `date /t`"
The date is `date /t`