unix shell 中两个文件的时间戳差异

发布于 2024-11-29 16:58:28 字数 678 浏览 0 评论 0原文

我有两个文件。我需要计算两个文件之间的时间戳差异。

我需要 test1 和 test2 之间的时间戳差异: -rw-r--r-- 1 root root 1 Aug 16 16:26 test1 -rw-r--r-- 1 root root 2 Dec 13 2010 test2

我需要test3和test4之间的时间戳差异。

-rw-r--r--   1 root     root           3 Aug 16 16:26 test3
-rw-r--r--   1 root     root           4 Aug 16 17:34 test4

请告诉我如何在 Solaris 中实现它。 我正在使用 Solaris,我的机器信息是:

- Sol 5.10 Generic_127128-11 i86pc i386 i86pc. 

如果您需要了解其他信息,请告诉我。

我在 Solaris 中得到了以下答案日期转换为秒的结果。

truss /usr/bin/date 2>&1 | grep ^time | awk -F"= " '{print $2}'

但这是针对当前日期的..我们如何对文件执行此操作(例如 test3,如上所述)?

I have two files. I need to calculate the timestamp difference between the two files.

I need the timestamp difference between test1 and test2:
-rw-r--r-- 1 root root 1 Aug 16 16:26 test1
-rw-r--r-- 1 root root 2 Dec 13 2010 test2

I need the timestamp difference between test3 and test4.

-rw-r--r--   1 root     root           3 Aug 16 16:26 test3
-rw-r--r--   1 root     root           4 Aug 16 17:34 test4

Please let me know how we can achieve it in Solaris .
I am using Solaris and my machine info is :

- Sol 5.10 Generic_127128-11 i86pc i386 i86pc. 

If you need to know anything else please let me know.

I have got the below answer date conversion to seconds in Solaris.

truss /usr/bin/date 2>&1 | grep ^time | awk -F"= " '{print $2}'

but this is for the current date .. how we can do it for file (for example test3, as above)?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

南街九尾狐 2024-12-06 16:58:28

stat(1) 命令可以显示自纪元以来的秒数时间戳:

stat --printf '%Y\n' foo

因此,类似以下内容可能有效:

(stat --printf '%Y' test2; printf ' - '; stat --printf '%Y\n' test4) | bc -lq

根据需要进行调整。

The stat(1) command can show the time stamp in seconds-since-epoch:

stat --printf '%Y\n' foo

Thus something like the following might work:

(stat --printf '%Y' test2; printf ' - '; stat --printf '%Y\n' test4) | bc -lq

Tweak as required.

别理我 2024-12-06 16:58:28

尝试这样的方法以秒为单位获取日期

date +%s -d "`ls -l test1 | awk -F " " '{ print $6,$7 }'`"

Try something like this to get the date in seconds

date +%s -d "`ls -l test1 | awk -F " " '{ print $6,$7 }'`"
一页 2024-12-06 16:58:28
$ ls -l .bashrc*
-rw-r--r-- 1 max max 360 Dec 14  2010 .bashrc
-rw-r--r-- 1 max max 359 Dec  2  2010 .bashrc~

$ echo $((`stat --format=%Y .bashrc` - `stat --format=%Y .bashrc~`))
1018884

$(()) 语法是 bash 算术表达式扩展。上面发生的事情是减去自 Unix 纪元以来的文件时间戳(以秒为单位)并打印差值。

$ ls -l .bashrc*
-rw-r--r-- 1 max max 360 Dec 14  2010 .bashrc
-rw-r--r-- 1 max max 359 Dec  2  2010 .bashrc~

$ echo $((`stat --format=%Y .bashrc` - `stat --format=%Y .bashrc~`))
1018884

The $(()) syntax is bash arithmetic expression expansion. What happens above is that file timestamps in seconds since Unix epoch get subtracted and the difference is printed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文