シェル スクリプトで、または変数として使用するために日付と時刻をフォーマットする方法と、さまざまなフォーマットの例を学びます。
シェルスクリプトで日付を使用する必要がある場合がたくさんあります。ログファイルに名前を付けたり、変数として渡したりします。そのため、スクリプトで文字列または変数として使用できる別の形式の日付が必要です。この記事では、シェル スクリプトで日付を使用する方法と、使用できるさまざまな種類の形式について説明します。
- Linux で日付と時刻を簡単に管理するには、timedatectl コマンドを確認してください
シェル スクリプトで日付を使用する方法
コマンド内にシェル実行を挿入することで、日付を使用できます。たとえば、現在の日付を挿入してログ ファイルを作成する場合は、次の方法で実行できます –
root@kerneltalks # echo test > /tmp/`date +%d`.txt root@kerneltalks # ls -lrt -rw-r--r--. 1 root root 5 Sep 10 09:10 10.txt
基本的に +%
でフォーマット識別子を渡す必要があります to date コマンドを使用して、目的の形式の出力を取得します。別の識別子の日付コマンドの供給があります。
–
のような変数に特定の日付形式を保存することもできます。root@kerneltalks # MYDATE=`date +%d.%b.%Y` root@kerneltalks # echo $MYDATE 10.Sep.2018
日付コマンドの異なるフォーマット変数
これらのフォーマット識別子は、日付コマンド man
からのものです ページ:
%a locale’s abbreviated weekday name (e.g., Sun) %A locale’s full weekday name (e.g., Sunday) %b locale’s abbreviated month name (e.g., Jan) %B locale’s full month name (e.g., January) %c locale’s date and time (e.g., Thu Mar 3 23:05:25 2005) %C century; like %Y, except omit last two digits (e.g., 20) %d day of month (e.g, 01) %D date; same as %m/%d/%y %e day of month, space padded; same as %_d %F full date; same as %Y-%m-%d %g last two digits of year of ISO week number (see %G) %G year of ISO week number (see %V); normally useful only with %V %h same as %b %H hour (00..23) %I hour (01..12) %j day of year (001..366) %k hour ( 0..23) %l hour ( 1..12) %m month (01..12) %M minute (00..59) %N nanoseconds (000000000..999999999) %p locale’s equivalent of either AM or PM; blank if not known %P like %p, but lower case %r locale’s 12-hour clock time (e.g., 11:11:04 PM) %R 24-hour hour and minute; same as %H:%M %s seconds since 1970-01-01 00:00:00 UTC %S second (00..60) %T time; same as %H:%M:%S %u day of week (1..7); 1 is Monday %U week number of year, with Sunday as first day of week (00..53) %V ISO week number, with Monday as first day of week (01..53) %w day of week (0..6); 0 is Sunday %W week number of year, with Monday as first day of week (00..53) %x locale’s date representation (e.g., 12/31/99) %X locale’s time representation (e.g., 23:13:48) %y last two digits of year (00..99) %Y year %z +hhmm numeric timezone (e.g., -0400) %:z +hh:mm numeric timezone (e.g., -04:00) %::z +hh:mm:ss numeric time zone (e.g., -04:00:00) %Z alphabetic time zone abbreviation (e.g., EDT)
上記の組み合わせを使用すると、シェルスクリプトで使用する出力として目的の日付形式を取得できます! %n
を使用することもできます 改行と %t
の場合 単一の文字列として使用するため、ほとんど必要のない出力にタブを追加します。
さまざまな日付形式の例
便宜上、すぐに使用できるように、さまざまな日付形式の組み合わせを以下に示します。
root@kerneltalks # date +%d_%b_%Y 10_Sep_2018 root@kerneltalks # date +%D 09/10/18 root@kerneltalks # date +%F-%T 2018-09-10-11:09:51 root@kerneltalks # echo today is `date +%A` today is Monday root@kerneltalks # echo Its `date +%d` of `date +%B" "%Y` and time is `date +%r` Its 10 of September 2018 and time is 11:13:42 AM