首页 > 代码库 > shell 用法小记录

shell 用法小记录

awk :
gsub 替换
netstat -tnpl | gawk ‘$NF ~/\/mongod$/{gsub(/.+:/,"",$4);print $4}‘|sort -n

把$4 已:结尾的全部替换为空

shell  数组
${#ports[@]}   #得出数组长度

${ports[@]} = ${ports[*]}  得出数组值

${ports[@]:8}   得出数组后8个

${ports[@]::8} = ${ports[@]:0:8} 得出数组前8个

${ports[@]:1:8}  得出数组第2个到第9个 (取8个)


本文出自 “好记性不如烂笔头” 博客,请务必保留此出处http://goooood.blog.51cto.com/5060201/1603935

shell 用法小记录