注意set -x其中"-"与"x"之间没有空格
[root@GitLab sh]# ./sx.sh heelo
+ a=heelo
+ echo heelo
heelo
[root@GitLab sh]# cat sx.sh
#!/bin/bash
set -x
a=$
echo $a
2023-10-06 21:29:10
注意set -x其中"-"与"x"之间没有空格
[root@GitLab sh]# ./sx.sh heelo
+ a=heelo
+ echo heelo
heelo
[root@GitLab sh]# cat sx.sh
#!/bin/bash
set -x
a=$
echo $a