@Tej_Singh_Rana @Vijin Palazhi how do we print the following using echo? Note th . . .

kartik_kube:
@Tej_Singh_Rana @Vijin Palazhi how do we print the following using echo? Note that it has “” in the text that needs to be printed

echo Hey there "Welcome to test!" let's get started

Tej_Singh_Rana:
Hello, @kartik_kube
You can use back slash(""),

command:
      - /bin/sh
      - -c      
      - echo "Hey there \"Welcome to test!\" let's get started"; 
      - sleep "4500"

kartik_kube:
Thanks @Tej_Singh_Rana!