linux下 date的用法
date 命令
引數含義:
%a 顯示星期簡寫 (Sun..Sat)
%A 顯示完整星期(Sunday..Saturday)
%b 顯示月份簡寫(Jan..Dec)
%B 顯示完整月份(January..December)
%c 顯示當前日期,格式如:Thu Aug 13 11:04:05 2009
%C 顯示世紀,當前年除100後的整數部分,如當前為20 (year divided by 100 and truncated to an integer)[00-99]
%d 顯示當前那日 ,範圍(01..31)
%D 日期,格式如(mm/dd/yy)
%e 顯示當前日,與%d不同的是%d顯示01,而%e顯示1,範圍 ( 1..31)
%F 如 %Y-%m-%d的日期格式
%g the 2-digit year corresponding to the %V week number
%G the 4-digit year corresponding to the %V week number
%h 與 %b相同
%H 24小時制的小時,範圍(00..23)
%I 12小時制的小時,範圍(01..12)
%j 一年中的那天,範圍是(001..366)
%k 24小時制的小時,只顯示1而不顯示01,範圍( 0..23)
%l 12小時制的小時,只顯示1而不顯示01,範圍( 1..12)
%m 顯示月份,範圍(01..12)
%M 顯示分鐘,範圍(00..59)
%n 新行
%N 顯示秒(000000000..999999999)
%p locale's upper case AM or PM indicator (blank in many locales)
%P locale's lower case am or pm indicator (blank in many locales)
%r 時間, 12小時制,格式(hh:mm:ss [AP]M)
%R 時間, 24小時制,格式(hh:mm)
%s 從1970-01-01 00:00:00到現在的秒數。seconds since '00:00:00 1970-01-01 UTC' (a GNU extension)
%S 秒,顯示當前時間的秒,範圍(00..60); the 60 is necessary to accommodate a leap sec-
ond其中60需要考慮到閏秒
%t a horizontal tab
%T 時間, 24-hour (hh:mm:ss)24小時制
%u day of week (1..7); 1 represents Monday,星期幾,其中1代表星期一,其他類似。
%U week number of year with Sunday as first day of week (00..53),一年中的第幾個星期,其中以星期日為第一天
%V week number of year with Monday as first day of week (01..53),一年中的第幾個星期,其中以星期一為第一天
%w day of week (0..6); 0 represents Sunday,星期幾,其中0代表星期日,1代表星期一,其他類似
%W week number of year with Monday as first day of week (00..53),一年中的第幾個星期,其中星期一為第一天,範圍從00-53
%x locale's date representation (mm/dd/yy) 按mm/dd/yy格式顯示日期
%X locale's time representation (%H:%M:%S)等於%H:%M:%S
%y last two digits of year (00..99)顯示2位數的年
%Y year (1970...) 顯示4位數的年
%z RFC-2822 style. numeric timezone (-0500) (a nonstandard extension)
%Z time zone (e.g., EDT), or nothing if no time zone is determinable
例子:
$date +%Y%m%d%k%M%S
20090813112124
echo "`date \"+%Y-%m-%d %H:%M:%S\"`"
2009-08-17 11:35:48
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/23577591/viewspace-697633/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- linux下date命令用法Linux
- linux 中 date命令的用法Linux
- 【轉】linux date的多個用法Linux
- linux 下的date命令Linux
- 《Linux系統 date、cal、hwclock時間命令的用法》Linux
- Oracle to_date()函式的用法Oracle函式
- DOS命令之Date命令的用法
- Linux 下的 vi 用法Linux
- Linux下scp的用法Linux
- linux 下 free的用法Linux
- shell date 詳細用法 如date --date='1 month ago' '+%Y%m'Go
- Linux下crontab命令的用法Linux
- Linux下echo命令的用法Linux
- Linux下touch命令的用法Linux
- Linux下umask命令的用法Linux
- Linux下vi的用法(轉)Linux
- Linux下的date命令究竟可以幹什麼Linux
- linux下mail的簡單用法LinuxAI
- linux下getopt函式的用法Linux函式
- Linux下find命令的用法(轉)Linux
- js Date.now()函式用法JS函式
- Linux dateLinux
- Linux下history命令用法Linux
- linux命令下jq的用法簡介Linux
- Java 時間類 Date、Calendar 及用法Java
- Linux date命令Linux
- Linux - date命令Linux
- Linux——基礎命令用法(下)Linux
- Linux下crontab命令的用法:sudo crontab -lLinux
- 【系統】Linux下 zip 和 unzip的用法Linux
- linux的date命令設定Linux
- Linux下more命令高階用法Linux
- Linux下mv命令高階用法Linux
- linux下xargs命令用法詳解Linux
- LINUX下RPM命令基本用法Linux
- Linux change date timeLinux
- Linux 中date命令Linux
- Linux下 ls 命令的高階用法8例Linux