标签:day 方法 除了 逻辑 字符串长度 NPU root 接下来 lin
shell脚本介绍[root@akuilinux01 shell]# chmod a+x 1.sh
[root@akuilinux01 shell]# ./1.sh
123
22:37:09 up 4:02, 2 users, load average: 0.00, 0.01, 0.05
USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT
root pts/0 192.168.21.1 22:29 5.00s 0.10s 0.00s /bin/bash ./1.sh
root pts/1 192.168.21.1 19:00 3:31m 0.08s 0.08s -bash
1.sh
[root@akuilinux01 shell]# /bin/bash 1.sh
123
22:37:27 up 4:03, 2 users, load average: 0.00, 0.01, 0.05
USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT
root pts/0 192.168.21.1 22:29 7.00s 0.10s 0.00s /bin/bash 1.sh
root pts/1 192.168.21.1 19:00 3:31m 0.08s 0.08s -bash
1.sh
[root@akuilinux01 shell]# sh -x 1.sh
[root@akuilinux01 shell]# date +%Y-%m-%d
2018-07-11
[root@akuilinux01 shell]# date +%y-%m-%d
18-07-11
[root@akuilinux01 shell]# date +%Y%m%d
20180711
[root@akuilinux01 shell]# date +%D
07/11/18
[root@akuilinux01 shell]# date +%F
2018-07-11
[root@akuilinux01 shell]# date +%s
1531320917
[root@akuilinux01 shell]# date -d @1531321618
2018年 07月 11日 星期三 23:06:58 CST
[root@akuilinux01 shell]# date +%s -d "2018-07-10 23:06:58"
1531235218
[root@akuilinux01 shell]# date +%H:%M:%S
22:57:20
[root@akuilinux01 shell]# date +%T
22:57:32
[root@akuilinux01 shell]# date +%w
3
[root@akuilinux01 shell]# date +%W
28
W是今年的第几周
[root@akuilinux01 shell]# date -d "-1 day" +%F
2018-07-10
[root@akuilinux01 shell]# date -d "-1 month" +%F
2018-06-11
[root@akuilinux01 shell]# date -d "-1 year" +%F
2017-07-11
[root@akuilinux01 shell]# date -d "-1 hour" +%T
22:05:55
[root@akuilinux01 shell]# date -d "+1 day" +%F
2018-07-12
[root@akuilinux01 shell]# cal
七月 2018
日 一 二 三 四 五 六
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
wc -l 1.txt
shell脚本介绍,shell脚本结构和执行,date命令用法,shell脚本中的变量
标签:day 方法 除了 逻辑 字符串长度 NPU root 接下来 lin
原文地址:http://blog.51cto.com/akui2521/2140658