标签: bash centos command variable-assignment
为什么
#!/bin/bash VARIABLE="value" if [ "$#" = 0 ]; then VARIABLE="value" fi
user@hostname $ ./test.sh ./test.sh: line 5: VARIABLE=value: command not found
在Centos 6.9上?第一个作业有效但第二个作业没有?