摘要:
UNIX Shell 编程(6)变量UNIX Shell允许把值存在变量中。要把值存入一个变量,只需写出变量名,后面紧跟一个等号,再紧跟变量值。variable=value切忌中间含空格Shell中没有任何数据类型的概念,变量值通通认为是字符串。如:[root@localhost programs]# count=1[root@localhost programs]# echo $count1再如:[root@localhost programs]# my_bin=/tools/jdk6/bin[root@localhost programs]# echo $my_bin/tools/jdk6 阅读全文