5
4

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.

シェルでのUNIXTIME(エポック秒)の取り方

Last updated at Posted at 2014-06-12

シェルの中でファイルの作成時間などを比べたい時。
コマンド的には以下でUNIXTIMEを取ることができる。

command
ls -l --time-style='+%s' ファイル名

以下のようにすればファイルの時間だけの取得も可能。

command
ls -l --time-style='+%s' test.m4a | tr -s " " | cut -d" " -f 6

数個のファイルの比較なら上記の時刻を取り込んで差分を取ればチェックなどは可能。
ただ、パイプを繰り返すとあまり効率が良くないので、速度を求める時などはきちんとプログラムで書いた方が吉。

ちなみにエポック秒というらしい。

5
4
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
5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?