Difference between revisions of "One line if bash"

From UVOO Tech Wiki
Jump to navigation Jump to search
(Created page with "``` ! -v DR_ENABLED && envtpl --keep-template foo.tf.tpl -v DR_ENABLED && envtpl --keep-template bar.tf.tpl ```")
 
(No difference)

Latest revision as of 18:24, 14 November 2024

[[ ! -v DR_ENABLED ]] && envtpl --keep-template foo.tf.tpl
[[ -v DR_ENABLED ]] && envtpl --keep-template bar.tf.tpl