练习编写csh文件时,遇到符号问题记录一下。
echo 'input a number plz'
set test=$<<BR>echo test
echo 'add 3 and display'
set test=`expr $test + 3`
echo 'adder is:' $test
例子中是根据键盘输入加3的一个简单程序。
例子中的第5句 set test=`expr $test + 3`使用的符号在单引号('),双引号("), 反引号(`)是不同的。
单引号只单纯显示其中的内容:
>> echo 'adder is:' $test
>> adder is: expr $test + 3 (单引号内容是什么就显示什么)
双引号显示变量的值:
>> echo 'adder is:' $test
>> adder is : expr 1 + 3 (显示了变量$test的值)
反引号显示其中函数的计算结果:
>> echo 'adder is:' $test
>> adder is 4(显示整个函数的计算结果)