Linux命令

Posted zze46

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux命令相关的知识,希望对你有一定的参考价值。

date

显示时间

date命令可以按照指定格式显示日期,只键入date则以默认格式显示当前时间。如下:

[email protected]:~$ date
2018年 08月 25日 星期六 15:38:01 CST

如果需要以指定的格式显示日期,可以使用“+”开头的字符串指定其格式,详细格式如下:

%n : 下一行
%t : 跳格
%H : 小时(00-23)
%I : 小时(01-12)
%k : 小时(0-23)
%l : 小时(1-12)
%M : 分钟(00-59)
%p : 显示本地 AM 或 PM
%r : 直接显示时间 (12 小时制,格式为 hh:mm:ss [AP]M)
%s : 从 1970 年 1 月 1 日 00:00:00 UTC 到目前为止的秒数
%S : 秒(00-60)
%T : 直接显示时间 (24 小时制)
%X : 相当于 %H:%M:%S
%Z : 显示时区
%a : 星期几 (Sun-Sat)
%A : 星期几 (Sunday-Saturday)
%b : 月份 (Jan-Dec)
%B : 月份 (January-December)
%c : 直接显示日期与时间
%d : 日 (01-31)
%D : 直接显示日期 (mm/dd/yy)
%h : 同 %b
%j : 一年中的第几天 (001-366)
%m : 月份 (01-12)
%U : 一年中的第几周 (00-53) (以 Sunday 为一周的第一天的情形)
%w : 一周中的第几天 (0-6)
%W : 一年中的第几周 (00-53) (以 Monday 为一周的第一天的情形)
%x : 直接显示日期 (mm/dd/yy)
%y : 年份的最后两位数字 (00.99)
%Y : 完整年份 (0000-9999)

上述格式不必全都记住,只需要掌握几个常用的即可。例如%Y表示年,%m表示月,%d表示日,%H表示小时,%M表示分钟,%S表示秒,%s表示从 1970 年 1 月 1 日 00:00:00 UTC 到目前为止的秒数,相当于time函数,%w表示一周中的第几天。

示例:

  • 格式化显示当前时间
    [email protected]:~$ date +"%Y-%m-%d %H:%M:%S"
    2018-08-25 15:39:58
  •  如果要显示的时间不是当前时间,而是经过运算的时间,则可以用-d选项。例如显示三年前的时间
    [email protected]:~$ date +"%Y-%m-%d %H:%M:%S" -d "-3 year"
    2015-08-25 15:40:48
  • 显示三个月后的时间
    [email protected]:~$ date +"%Y-%m-%d %H:%M:%S" -d "+3 month"
    2018-11-25 15:41:23
  • 显示10天后的时间
    [email protected]:~$ date +"%Y-%m-%d %H:%M:%S" -d "+10 day"
    2018-09-04 15:43:08
  • 距离1970年0时0分0秒所经历的秒数
    [email protected]:~$ date +"%s"
    1535183113

设置时间

  • 用 -s选项可以设置系统时间
    [email protected]:~$ date -s "2019-3-3 12:23:21"
    2019年 03月 03日 星期日 12:23:21 CST

cal 

  • 查看当前月日历
    [email protected]:~$ 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  
  • 查看当前年日历
    [email protected]:~$ cal -y
                                2018
             一月                    二月                    三月           
    日 一 二 三 四 五 六  日 一 二 三 四 五 六  日 一 二 三 四 五 六  
        1  2  3  4  5  6               1  2  3               1  2  3  
     7  8  9 10 11 12 13   4  5  6  7  8  9 10   4  5  6  7  8  9 10  
    14 15 16 17 18 19 20  11 12 13 14 15 16 17  11 12 13 14 15 16 17  
    21 22 23 24 25 26 27  18 19 20 21 22 23 24  18 19 20 21 22 23 24  
    28 29 30 31           25 26 27 28           25 26 27 28 29 30 31  
                                                                      
    
             四月                    五月                    六月           
    日 一 二 三 四 五 六  日 一 二 三 四 五 六  日 一 二 三 四 五 六  
     1  2  3  4  5  6  7         1  2  3  4  5                  1  2  
     8  9 10 11 12 13 14   6  7  8  9 10 11 12   3  4  5  6  7  8  9  
    15 16 17 18 19 20 21  13 14 15 16 17 18 19  10 11 12 13 14 15 16  
    22 23 24 25 26 27 28  20 21 22 23 24 25 26  17 18 19 20 21 22 23  
    29 30                 27 28 29 30 31        24 25 26 27 28 29 30  
                                                                      
    
             七月                    八月                    九月           
    日 一 二 三 四 五 六  日 一 二 三 四 五 六  日 一 二 三 四 五 六  
     1  2  3  4  5  6  7            1  2  3  4                     1  
     8  9 10 11 12 13 14   5  6  7  8  9 10 11   2  3  4  5  6  7  8  
    15 16 17 18 19 20 21  12 13 14 15 16 17 18   9 10 11 12 13 14 15  
    22 23 24 25 26 27 28  19 20 21 22 23 24 25  16 17 18 19 20 21 22  
    29 30 31              26 27 28 29 30 31     23 24 25 26 27 28 29  
                                                30                    
    
             十月                   十一月                   十二月           
    日 一 二 三 四 五 六  日 一 二 三 四 五 六  日 一 二 三 四 五 六  
        1  2  3  4  5  6               1  2  3                     1  
     7  8  9 10 11 12 13   4  5  6  7  8  9 10   2  3  4  5  6  7  8  
    14 15 16 17 18 19 20  11 12 13 14 15 16 17   9 10 11 12 13 14 15  
    21 22 23 24 25 26 27  18 19 20 21 22 23 24  16 17 18 19 20 21 22  
    28 29 30 31           25 26 27 28 29 30     23 24 25 26 27 28 29  
                                                30 31  

tzselect

  • 设置亚洲->中国->北京时区
    [email protected]:~$ tzselect
    Please identify a location so that time zone rules can be set correctly.
    Please select a continent, ocean, "coord", or "TZ".
     1) Africa
     2) Americas
     3) Antarctica
     4) Asia
     5) Atlantic Ocean
     6) Australia
     7) Europe
     8) Indian Ocean
     9) Pacific Ocean
    10) coord - I want to use geographical coordinates.
    11) TZ - I want to specify the time zone using the Posix TZ format.
    #? 4
    Please select a country whose clocks agree with yours.
     1) Afghanistan          18) Israel            35) Palestine
     2) Armenia          19) Japan            36) Philippines
     3) Azerbaijan          20) Jordan            37) Qatar
     4) Bahrain          21) Kazakhstan        38) Russia
     5) Bangladesh          22) Korea (North)        39) Saudi Arabia
     6) Bhutan          23) Korea (South)        40) Singapore
     7) Brunei          24) Kuwait            41) Sri Lanka
     8) Cambodia          25) Kyrgyzstan        42) Syria
     9) China          26) Laos            43) Taiwan
    10) Cyprus          27) Lebanon            44) Tajikistan
    11) East Timor          28) Macau            45) Thailand
    12) Georgia          29) Malaysia            46) Turkmenistan
    13) Hong Kong          30) Mongolia            47) United Arab Emirates
    14) India          31) Myanmar (Burma)        48) Uzbekistan
    15) Indonesia          32) Nepal            49) Vietnam
    16) Iran          33) Oman            50) Yemen
    17) Iraq          34) Pakistan
    #? 9
    Please select one of the following time zone regions.
    1) Beijing Time
    2) Xinjiang Time
    #? 1
    
    The following information has been given:
    
        China
        Beijing Time
    
    Therefore TZ=‘Asia/Shanghai‘ will be used.
    Selected time is now:    Sat Aug 25 16:02:44 CST 2018.
    Universal Time is now:    Sat Aug 25 08:02:44 UTC 2018.
    Is the above information OK?
    1) Yes
    2) No
    #? 1
    
    You can make this change permanent for yourself by appending the line
        TZ=‘Asia/Shanghai‘; export TZ
    to the file ‘.profile‘ in your home directory; then log out and log in again.
    
    Here is that TZ value again, this time on standard output so that you
    can use the /usr/bin/tzselect command in shell scripts:
    Asia/Shanghai

 shutdown

  • 关机
    shutdown -h now # 现在立刻关机
    shutdown -h +5 "It will be off in five minutes" # 设置5分钟后关机并提示
    shutdown -h +5  # 5分钟后关机
    shutdown -h 12:00 #12点关机
    shutdown -c # 取消关机操作
  • 重启
    shutdown -r now # 现在立即重启
    shutdown -r +5 # 5分钟后重启
    shutdown -r 12:00 #十二点重启

以上是关于Linux命令的主要内容,如果未能解决你的问题,请参考以下文章

markdown [Docker] Docker片段列表和命令#linux #docker #snippets

Android 逆向Linux 文件权限 ( Linux 权限简介 | 系统权限 | 用户权限 | 匿名用户权限 | 读 | 写 | 执行 | 更改组 | 更改用户 | 粘滞 )(代码片段

VSCode自定义代码片段——git命令操作一个完整流程

VSCode自定义代码片段——cli的终端命令大全

VSCode自定义代码片段4——cli的终端命令大全

VSCode自定义代码片段15——git命令操作一个完整流程