摘要: #!/bin/sh #read -t 30 -p "请输入jstat命令监控间隔,次数:" time count read -p "输入jstat命令监控间隔(1s输出一次,输入1000):" time if [ -z "$time" ];then time=1000 fi read -p "输入jstat命令监控次数:" count if [ -z "$count" ];then count=1 阅读全文
posted @ 2019-12-11 15:57 Agoly 阅读(951) 评论(0) 推荐(0) 编辑