Linux执行shell脚本提示bad interpreter
第一次遇到在linux中执行shell脚本遇到"/bin/bash^M: bad interpreter: No such file or directory",一开始还以为是脚本头部哪个字母写错了,结果并不是,经过度娘搜索,找到原因:
不同系统的编码格式不同,在Windows下编写的shell脚本换行方式与Unix是不一样的。
解决方法:
vim filename.sh 阅读全文
第一次遇到在linux中执行shell脚本遇到"/bin/bash^M: bad interpreter: No such file or directory",一开始还以为是脚本头部哪个字母写错了,结果并不是,经过度娘搜索,找到原因:
不同系统的编码格式不同,在Windows下编写的shell脚本换行方式与Unix是不一样的。
解决方法:
vim filename.sh 阅读全文
1.监控web网络状态
1 |
curl -o /dev/null -s -w "time_dns: %{time_namelookup}\ntime_connect: %{time_connect}\ntime_starttransfer: %{time_starttransfer}\ntime_total: %{time_total}\nweb_speed: %{speed_download}\nhttp_code: %{http_code}\n" http://www.baidu.com/ |
time_dns: 0.032 -----------DNS解析域名消耗的时间
time_connect: 0.036 -----------client和server建立TCP连接的时间
time_starttransfer: 0.051 -----------从client发出请求,到web server响应第一个字节的时间
time_total: 0.080 -----------client发出请求,到web server发送回所有相应数据的时间
web_speed: 2069354.000 -----------下载速度,单位byte/s
http_code: 200 -----------请求状态码
阅读全文