语法示例: while 条件为真 do echo ok done #!/bin/bash while true do echo ok done while循环数字 #!/bin/bash a=1 b=9 while [ $a -lt 10 ] do sum=$((a + b)) echo $a + ...
分类:
系统相关 时间:
2021-06-02 11:02:44
阅读次数:
0
示例: for i in 1 2 3 do echo $i done #!/bin/bash for i in {1..100} do echo $i done for 循环指定分隔符 以冒号为分隔符 IFS=: 以换行符作为分隔符 IFS=$'\n' 以行为单位读取数据 #!/bin/bash I ...
分类:
系统相关 时间:
2021-06-02 11:00:55
阅读次数:
0
You have n boxes. You are given a binary string boxes of length n, where boxes[i] is '0' if the ith box is empty, and '1' if it contains one ball. In ...
分类:
其他好文 时间:
2021-06-02 10:37:12
阅读次数:
0
vue-awesome-swiper在Vue中的应用 网址:https://github.surmon.me/vue-awesome-swiper/ vue-awesome-swiper是基于swiper的, 安装不同版本的vue-awesome-swiper对应不同的swiper, 所以swipe ...
分类:
其他好文 时间:
2021-05-25 18:30:49
阅读次数:
0
for i in `ps -AL |grep Worker | awk '{print $2}'`; do \ echo $i ; \ gdb --q --n --ex bt --batch --pid $i; \ done 2>&1 |tee /var/stacks.txt CPU使用率较低但负载 ...
分类:
数据库 时间:
2021-05-24 17:19:34
阅读次数:
0
jquery的官方下载地址: https://jquery.com/ write less ,do more <用最少的代码完成更多的功能> 1、点击 2、“右键”点击 3、点击链接另存为(或者按键盘上的“k”) 4、在 “下载到” 里面选择下载地址,后点“下载” 下载第一个和第二个 5、打开下载的 ...
分类:
Web程序 时间:
2021-05-24 17:14:45
阅读次数:
0
Maven测试Mybatis出现Could not find resource报错 1.注意Mybatis核心文件的编写 官网 <mappers> <mapper resource="org/mybatis/example/BlogMapper.xml"/> </mappers> 改写成自己 <ma ...
分类:
其他好文 时间:
2021-05-24 16:01:13
阅读次数:
0
dedecms常用的时间格式调用代码: {dede:field name='pubdate' function='strftime("%Y年%m月%d日 %H:%M:%S","@me")' /} 样式:2007年1月1日 18:30:02 {dede:field name='pubdate' fun ...
分类:
其他好文 时间:
2021-05-24 14:47:00
阅读次数:
0
在我们日常运维中,写脚本监控一个进程是比较常见的操作,比如我要监控mysql进程是否消失,如果消失就重启mysql。 用下面这段代码就可以实现: #!/bin/sh Date=` date ‘+%c’` while : do if ! ps aux | grep -w mysqld | grep - ...
分类:
系统相关 时间:
2021-05-24 14:22:35
阅读次数:
0
Given a tree, you are supposed to list all the leaves in the order of top down, and left to right. Input Specification: Each input file contains one t ...
分类:
其他好文 时间:
2021-05-24 14:03:04
阅读次数:
0