Difference between revisions of "Using Backticks"

From Lianjapedia
Jump to: navigation, search
(Created page with "Did you know that Lianja/VFP provides tight integration with the command shell. The ` ... ` command sequence (backticks) can be used to run external shell commands that are pi...")
 
Line 1: Line 1:
Did you know that Lianja/VFP provides tight integration with the command shell. The ` ... ` command sequence (backticks) can be used to run external shell commands that are piped together and to substitute the output into a Lianja character string.
+
Lianja/VFP provides tight integration with the command shell. The ` ... ` command sequence (backticks) can be used to run external shell commands that are piped together and to substitute the output into a Lianja character string.
  
 
Try this is the console:
 
Try this is the console:

Revision as of 04:12, 27 December 2017

Lianja/VFP provides tight integration with the command shell. The ` ... ` command sequence (backticks) can be used to run external shell commands that are piped together and to substitute the output into a Lianja character string.

Try this is the console:

? "Date is `date`"