4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

MacOSとLinuxのdateコマンドの違い

Last updated at Posted at 2016-05-16

Datestring↔Timestampの変換はdateコマンドでやることが多いのだが、
Linux系OSとMacOSそれぞれのbashの方言の違いにハマったのでメモ。

GNU (e.g. Linux OS)

# To Timestamp
date -d "2008-10-1 12:34" +%s
# To Datestring
date --date "@1104505200"

BSD (e.g. Mac OS)

# To Timestamp
date -r "1104505200"

# To Datestring
date -j -f "%Y-%m-%d" "2010-10-02" "+%s"
4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?