stty是linux下改变和打印终端设置的常用命令。 一、参数: 1.打印终端行设置 -a,--all 以人可读的方式打印所有当前设置;-a参数比单独的stty命令输出的终端信息更详细 -g,--save 以stty可读的方式打印当前所有设置 -F,--file=DEVICE 打开并使用特定的设备( ...
分类:
系统相关 时间:
2019-05-29 14:25:09
阅读次数:
136
记录下来备忘 结构如下 Report.vue Table.vue ...
分类:
其他好文 时间:
2019-05-09 19:43:08
阅读次数:
95
1 /* 2 办件流转 3 */ 4 procedure P_DoFileFlow(varError out varchar2, 5 varWaitID in varchar2, 6 varFlowID in varchar2,... ...
分类:
其他好文 时间:
2019-03-27 20:55:29
阅读次数:
131
Linux command stty reference: https://blog.csdn.net/lqxandroid2012/article/details/78929506 【Purpose】 Learning linux command stty for get/set serial u ...
分类:
系统相关 时间:
2019-03-12 18:35:39
阅读次数:
222
Undefined类型只有一个值,即undefined。当声明的变量还未被初始化时,变量的默认值为undefined。Null类型也只有一个值,即null。null用来表示尚未存在的对象,常用来表示函数企图返回一个不存在的对象。 js 代码 let testTypeNum;alert(testTyp ...
分类:
Web程序 时间:
2019-02-26 01:26:12
阅读次数:
231
编码语句分类: 选择执行:if for 循环(循环次数已知) while循环(循环次数未知) until循环(循环次数未知) case语句:有多个测试条件时,case语句会使得语法结构更明晰 实例 备份日志 #!/bin/bash # 每周 5 使用 tar 命令备份/var/log 下的所有日志文 ...
分类:
系统相关 时间:
2019-02-11 11:02:34
阅读次数:
328
#!/bin/bash #author liuhui by #this script is only for CentOS 7.x #check the OS platform=`uname -i` if [ $platform != "x86_64" ];then echo "this scrip ...
分类:
其他好文 时间:
2019-01-23 01:24:14
阅读次数:
214
```
#!/bin/bash
#tput和stty是两款终端处理工具
#获取列数和行数
tput cols
tput lines
#打印当前终端名
tput longname
#移动光标 移动光标到100 100
tput cup 100 100
#设置终端背景色 0-7
tput setb 0
... ...
分类:
系统相关 时间:
2018-11-21 16:00:39
阅读次数:
212
一、首先安装必要的库 nginx 中gzip模块需要 zlib 库,rewrite模块需要 pcre 库,ssl 功能需要openssl库。选定/usr/local为安装目录,以下具体版本号根据实际改变。 1.安装PCRE库 $ cd /usr/local/ $ wget ftp://ftp.csx ...
分类:
系统相关 时间:
2018-10-05 18:58:41
阅读次数:
236
https://blog.csdn.net/wumiju/article/details/80429412 public partial class ProductTypeModel:DbEntityModels.ProductType { public List<ProductTypeModel> ...