Difference between revisions of "SET BACKTICKS"

From Lianjapedia
Jump to: navigation, search
(Created page with "==Purpose== Enable or disable `backticks` command line substitution ==Syntax== SET BACKTICKS ON | OFF | (<expL>) ==See Also== SET MACROS ==Description== If SET BACKTICK...")
 
(No difference)

Latest revision as of 05:54, 23 January 2020

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`