blob: 16dae3f4b7d8968f84ae14a9684a3fa094e1b083 [file] [log] [blame]
Denys Vlasenko42ba7572017-07-21 13:20:14 +02001set -x
2
3var1=val
4var2='one two'
5true %s\\n one "two 'three" four
6
7# assignment:
8this=command
9# NOT assignment, +x code should show it quoted:
10"this=command"
11
12if true; then true; fi
13# +x code should quote 'if' here:
14"if" true