Zirkul DevSecOps
  • Welcome
  • DevSecOps
    • Getting started
    • Creating Jobs
    • Running Jobs
    • Azure DevOps Pipelines
    • Jenkins Pipelines
    • Job Script Syntax
    • Script templates
  • Zirkul Agent
    • Running the Agent
      • Command Line Interface
    • Command reference
      • Help
      • Clear
      • Var
      • Vars
      • Print
      • Date
      • Now
      • UTCNow
      • Day
      • Month
      • Year
      • Hour
      • Minute
      • Second
      • Env
      • Is base64
      • To base64
      • From base64
    • Scanner signatures
Powered by GitBook
On this page
  1. Zirkul Agent
  2. Command reference

Print

Print values in the terminal.

Command:

print

Syntax:

print | echo | > 'string or numeric values'

Example:

print 'Hello world!'
Hello world!

echo 'Hello world!'
Hello world!

> 'Hello world!'
Hello world!

print 123
123

var my_var = 'MyVar'
echo my_var
MyVar
echo 'The value is {{my_var}}'
The value is MyVar

PreviousVarsNextDate

Last updated 1 year ago