Bash 新特性

1.引用

a=hello

hello=world

echo ${!a}

輸出:world


2.關聯數組

declare -A user //使用關聯數組需先聲明

ou=name

user=([name]=order_c [passwd]=xiamen [email]=xxx@qq.com)

for value in ${user[*]}; do

    echo $value;
    
done

輸出: order_c
      xxx@qq.com
    xiamen
${user[*]}  獲取數組全部值
${!user[*]} 獲取全部鍵
${#user[*]} 獲取數組長度
相關文章
相關標籤/搜索