ablog

不器用で落着きのない技術者のメモ

bash で ファイルのタイムスタンプを比較する

$ ls -l
-rw-r--r-- 1 oracle oinstall    0  113 18:45 a
-rw-r--r-- 1 oracle oinstall    0  113 18:46 b
$ if [[ a -ne b ]]; then 
> echo a is newer than b.
> else 
> echo a is older than b.
> fi
a is older than b.