码迷,mamicode.com
首页 >  
搜索关键字:shell脚本 wlile if case 循环语句    ( 19099个结果
RFC1925 The Twelve Networking Truths
(1) It Has To Work. (2) No matter how hard you push and no matter what the priority, you can't increase the speed of light. (2a) (corollary). No matte ...
分类:Web程序   时间:2021-02-18 13:21:47    阅读次数:0
Sheel 脚本接收键盘输入
一、通过read 接收 1. 通过vim 定义一个test.sh的脚本 vim test.sh 2. 编写shell脚本 #! /bin/bash read name echo "$name It is a test" 3. 添加脚本执行权限 chmod +x test.sh 4. 执行脚本 [ro ...
分类:其他好文   时间:2021-02-18 13:13:07    阅读次数:0
狂神Java基础语法学习
Java 基础语法 标识符和关键字 Java所有的组成部分都需要名字。类名、变量名以及方法名都被称为标识符。 所有标识符都应该以字母、美元符或下划线组成 关键字: abstract assert boolean break byte case catch char class const conti ...
分类:编程语言   时间:2021-02-17 14:44:19    阅读次数:0
Java流程控制学习003Switch选择结构学习
Switch选择结构学习 接上一篇博客的switch public static void main(String[] args) { String name = "芜湖"; //JDK7新特性,表达式结果可以是字符串 //字符的本质还是数字? //反编译 java--class(字节码文件) 反编 ...
分类:编程语言   时间:2021-02-17 14:18:49    阅读次数:0
[Bash] Create a Bash Script that Accepts Named Options with getopts
Getopts Let’s say you want to allow a user to pass a -v flag to turn on verbose logging in a script. Manually parsing out options passed to a script i ...
分类:其他好文   时间:2021-02-16 12:03:18    阅读次数:0
0242. Valid Anagram (E)
Valid Anagram (E) 题目 Given two strings s and t , write a function to determine if t is an anagram of s. Example 1: Input: s = "anagram", t = "nagaram" ...
分类:其他好文   时间:2021-02-15 12:41:17    阅读次数:0
httprunner(9)运行测试用例的方式总结
前言 用过pytest的小伙伴都知道,pytest的运行方式是非常丰富的,可以说是你想怎么运行怎么运行,想运行哪些运行哪些,那httprunner是否同样可以呢? 运行用例的各种方式 运行指定路径的用例 格式:hrun + case路径 (httprunner_env) ? hrun hrun hr ...
分类:Web程序   时间:2021-02-10 13:06:06    阅读次数:0
1002 A+B for Polynomials (25 分)
This time, you are supposed to find $A+B$ where $A$ and $B$ are two polynomials. Input Specification: Each input file contains one test case. Each cas ...
分类:其他好文   时间:2021-02-10 13:03:20    阅读次数:0
ReentrantLock 源代码之我见
ReentrantLock,英文意思是可重入锁。从实际代码实现来说,ReentrantLock也是互斥锁(Node.EXCLUSIVE)。与互斥锁对应的的,还有共享锁Node.SHARED ReentrantLock 集成了Lock接口,Lock接口主要功能有上锁lock()、尝试上锁tryLock ...
分类:其他好文   时间:2021-02-09 12:01:31    阅读次数:0
2020 BIT冬训-模拟与暴力 O - The Answer to the Ultimate Question of Life, The Universe, and Everything. 计蒜客 - 42545
Problem Description For decades, scientists have wondered whether each of the numbers from 0 to 100 could be represented as the sum of three cubes, wh ...
分类:其他好文   时间:2021-02-08 12:44:17    阅读次数:0
19099条   上一页 1 ... 14 15 16 17 18 ... 1910 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!