标签:shell
#!/bin/bash
declare -A APPPORT
APPPORT=([zhaocancan]=159****1876)
for key in ${!APPPORT[*]}
do
echo $key phone is ${APPPORT[$key]}
done
#zhaocancan phone is 159****1876
本文出自 “freeterman” 博客,请务必保留此出处http://myunix.blog.51cto.com/191254/1687620
标签:shell
原文地址:http://myunix.blog.51cto.com/191254/1687620