随笔分类 -  shell

摘要:1.shell获取时间 time1=$(date) echo $time1 time2=$(date "+%Y%m%d%H%M%S") echo $time2 time3=$(date "+%Y-%m-%d %H:%M:%S") echo $time3 time4=$(date "+%Y.%m.%d 阅读全文
posted @ 2020-04-14 23:22 纵码万水千山 阅读(5343) 评论(0) 推荐(0) 编辑
摘要:IF条件判断 1、基本语法: if [ command ]; then 符合该条件执行的语句 fi 2、扩展语法: if [ command ];then 符合该条件执行的语句 elif [ command ];then 符合该条件执行的语句 else 符合该条件执行的语句 fi 3、语法说明: b 阅读全文
posted @ 2020-04-14 22:26 纵码万水千山 阅读(1900) 评论(0) 推荐(0) 编辑
摘要:linux中shell变量$#,$@,$0,$1,$2的含义解释: 变量说明: 1. $$ Shell本身的PID(ProcessID) 2. $! Shell最后运行的后台Process的PID 3. $? 最后运行的命令的结束代码(返回值) 4. $- 使用Set命令设定的Flag一览 5. $ 阅读全文
posted @ 2020-04-14 22:10 纵码万水千山 阅读(2456) 评论(0) 推荐(0) 编辑
摘要:什么是Here Document Here Document 是在Linux Shell 中的一种特殊的重定向方式,它的基本的形式如下 cmd << delimiter Here Document Content delimiter 它的作用就是将两个 delimiter 之间的内容(Here Do 阅读全文
posted @ 2020-04-14 21:57 纵码万水千山 阅读(402) 评论(0) 推荐(1) 编辑