Chinaunix首页 | 论坛 | 博客
  • 博客访问: 839745
  • 博文数量: 339
  • 博客积分: 3151
  • 博客等级: 中校
  • 技术积分: 3425
  • 用 户 组: 普通用户
  • 注册时间: 2010-10-10 14:47
文章分类

全部博文(339)

文章存档

2023年(43)

2022年(44)

2021年(3)

2020年(13)

2019年(39)

2018年(25)

2015年(2)

2014年(18)

2013年(12)

2012年(48)

2011年(79)

2010年(13)

发布时间:2020-11-26 10:28:18

世上真正的精英高手应是:受挫更悍,遇强愈强——因为这世上总是挫折多、波折多、强敌多、强中自有强中手更多!(惊艳一枪)......【阅读全文】

阅读(775) | 评论(0) | 转发(0)

发布时间:2020-11-04 23:08:47

cat /dev/null > log.txt2. 脚本注释、占位符#!/bin/sh    : this is single line comment    : 'this is a multiline comment,  second li.........【阅读全文】

阅读(2446) | 评论(0) | 转发(0)

发布时间:2020-11-04 22:51:20

awk -F "[ :]+"版权......【阅读全文】

阅读(992) | 评论(0) | 转发(0)

发布时间:2020-11-03 23:22:32

1. 监控服务器的活动状态#!/bin/bash ip=127.0.0.1while true do  ping -c1 $ip>/dev/null 2>/dev/null  if [ $? == "0" ];then  echo "`date "+%Y-%m-%d %H:%M:%S "`$ip is up">>a.log  fi  sleep 1done写一个工具,对 127.0.0.1 持续监控,当网络断开时,记录时.........【阅读全文】

阅读(748) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册