while 循环语句

[root@localhost shell]# cat while-daemon01.sh 
#!/bin/sh
while true
do
    uptime >> /opt/uptime.sh
    sleep 2
done

[root@localhost shell]# bash  while-daemon01.sh
 

[root@localhost shell]# cat /opt/uptime.sh 
 15:25:02 up  5:21,  5 users,  load average: 0.00, 0.00, 0.00
 15:25:04 up  5:21,  5 users,  load average: 0.00, 0.00, 0.00
 15:25:06 up  5:21,  5 users,  load average: 0.00, 0.00, 0.00
 15:26:47 up  5:23,  5 users,  load average: 0.00, 0.00, 0.00
 15:26:49 up  5:23,  5 users,  load average: 0.00, 0.00, 0.00
 15:26:51 up  5:23,  5 users,  load average: 0.00, 0.00, 0.00
 15:26:53 up  5:23,  5 users,  load average: 0.00, 0.00, 0.00
 15:26:55 up  5:23,  5 users,  load average: 0.00, 0.00, 0.00
 15:26:57 up  5:23,  5 users,  load average: 0.00, 0.00, 0.00
 

相关推荐

  1. Py-While循环语句

    2024-03-17 17:28:01       50 阅读
  2. while 循环语句

    2024-03-17 17:28:01       38 阅读
  3. C# while循环语句

    2024-03-17 17:28:01       35 阅读
  4. C# —— while循环语句

    2024-03-17 17:28:01       31 阅读
  5. Python: for,while循环语句

    2024-03-17 17:28:01       51 阅读
  6. C语言分支和循环语句while

    2024-03-17 17:28:01       43 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-03-17 17:28:01       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-03-17 17:28:01       101 阅读
  3. 在Django里面运行非项目文件

    2024-03-17 17:28:01       82 阅读
  4. Python语言-面向对象

    2024-03-17 17:28:01       91 阅读

热门阅读

  1. Elasticsearch(14) match_phrase_prefix的使用

    2024-03-17 17:28:01       36 阅读
  2. 策略模式业务实战

    2024-03-17 17:28:01       39 阅读
  3. MongoDB聚合运算符:$first

    2024-03-17 17:28:01       40 阅读
  4. 11. C++空基类优化

    2024-03-17 17:28:01       36 阅读
  5. 微信小程序睡眠X秒【while循环模式】

    2024-03-17 17:28:01       42 阅读
  6. 安装与配置FTP服务器(超详细)

    2024-03-17 17:28:01       39 阅读
  7. 奇怪需求之奇怪设计

    2024-03-17 17:28:01       34 阅读
  8. 人见人爱的链表

    2024-03-17 17:28:01       39 阅读
  9. Mac中文输入法区分回车和提交

    2024-03-17 17:28:01       39 阅读
  10. 数据结构和算法:链表构造相关代码理解

    2024-03-17 17:28:01       42 阅读
  11. LeetCode--58

    2024-03-17 17:28:01       43 阅读