if-then if command then commands fi bash shell中的if语句运行在if行定义的命令. 如果命令突出状态时0, 将执行then后面的命令. 如果命令的退出状态时0以外的其他值,那么then后面的命令将不会执行.#!/bin/bash # testing th ...
分类:
系统相关 时间:
2020-05-22 17:27:54
阅读次数:
55
D14 case语句是多级的if...then...else...fi语句很好的替代方式。它可以让一个条件与多个模式相比较,而且case语句的读写比较方便。 语法: case EXPRESSION in PATTERN1 ) CONSEQUENT-COMMANDS ;; #必须使用 PATTERN2 ...
分类:
系统相关 时间:
2020-05-22 12:48:23
阅读次数:
61
前言 测试一个web网站的时候,通常需要先登录。要是每个脚本都写一次登录流程,太麻烦了,于是我们会想到写一个公共函数,这样每次去调用函数即可。 cypress 里面提供了一个 commands.js 可以自定义命令,如使用cy.login(user,password)就能调用了 登录 前面写了一个登 ...
分类:
Web程序 时间:
2020-05-21 00:30:08
阅读次数:
145
The df and du commands provide different system information and I can not write to a partition that df says is 100% full. Which is correct and why doe ...
分类:
其他好文 时间:
2020-05-20 20:06:11
阅读次数:
77
You are given an undirected graph without self-loops or multiple edges which consists of nn vertices and mm edges. Also you are given three integers n ...
分类:
其他好文 时间:
2020-05-19 00:53:03
阅读次数:
67
Implementing JavaScript inheritance using and Prior to ES6, implementing a proper inheritance required multiple steps. One of the most commonly used s ...
分类:
其他好文 时间:
2020-05-18 18:17:12
阅读次数:
60
1.1.2 Response rest_framework.response.Response REST framework提供了一个响应类Response,使用该类构造响应对象时,响应的具体数据内容会被转换(render渲染器对象)成符合前端需求的类型。 REST framework提供了Rend ...
分类:
其他好文 时间:
2020-05-15 09:20:15
阅读次数:
67
在没有subprocess这个模块的时候,我们怎么去跟我们的操作系统做交互的呐?下面我们先说说这三个模块:os.system()、os.popen()、commands。 1. os.system() 作用:执行系统命令,完成后退出,只返回命令的执行状态(0:成功,非0:失败),不返回命令的执行结果 ...
分类:
其他好文 时间:
2020-05-14 22:39:00
阅读次数:
75
问题:在业务中使用了viewUI,但是在使用select下拉框时,莫名的发现一个问题,其中的on-change事件是在option发生改变的时候触发,但是在页面刚进来的时候也会触发这个事件,就感觉莫名奇妙,不知道是不是一个bug,但是还是最终解决了,解决方法如下; html: <Select v-m ...
分类:
其他好文 时间:
2020-05-13 23:27:29
阅读次数:
80
Problem Link: Multiple of 2019 Key idea: For subarray S[i1, j] and S[i2, j] with i1 < i2, if the V[i1, j] % 2019 is the same with V[i2, k] % 2019, it ...
分类:
其他好文 时间:
2020-05-13 09:38:43
阅读次数:
64