06 2021 档案
摘要:1、网络检查工具 ping telnet traceroute 等等。。。 网络检查小栗子 ping命令 https://blog.51cto.com/u_13053917/2453036 1 简单网络测速 ping -l 1024 -f -i 64 -n 10 erp.hihonor.com 原理
阅读全文
摘要:代码:test.sh #!/bin/bash a="one,two,three,four" #要将$a分割开,可以这样: OLD_IFS="$IFS" IFS="," arr=($a) IFS="$OLD_IFS" for s in ${arr[@]} do echo "$s" done shell
阅读全文