root@Oscar:/home/test/yuanweitest# declare -i sum=100+2000 #說明若是不加上 declare -i 默認是認爲sum裏面的內容爲字符串 root@Oscar:/home/test/yuanweitest# echo $sum
####################直接數組############ root@Oscar:/home/test/yuanweitest# a=(1 2 3 4 5) root@Oscar:/home/test/yuanweitest# echo $a root@Oscar:/home/test/yuanweitest# echo ${a[1]} #調用數組裏面的第二個元素 2
####################申明數組############ root@Oscar:/home/test/yuanweitest# declare -a abc root@Oscar:/home/test/yuanweitest# abc=(12,34,56) root@Oscar:/home/test/yuanweitest# abc[1]=wher root@Oscar:/home/test/yuanweitest# echo ${abc[1]} #顯示第二個元素 ####################刪除數組中一元素######################## $ unset abc[1] ####################顯示數組中的每個元素################### $ echo ${a[*]} ####################顯示數組的大小########################### echo ${#a[*]}
####摘自《鳥哥的Linux這本書》java