Unix 中的递归时间戳更新

发布于 2024-08-17 02:38:47 字数 199 浏览 5 评论 0原文

当我创建一个目录 d1 并在 5 秒后创建 d1/d2 时,d1 时间戳会更新为 d2 的时间戳。 5秒后,当我创建d1/d2/d3时,只有d2时间戳更新为d3,而不是d1时间戳。

基本上,我的要求是不仅父文件夹,而且从根到父文件夹的所有文件夹都必须随父文件夹的时间更新。

有没有办法将 d1 的时间戳更新为 d3 的时间戳?

请澄清。

When I create a directory say d1 and after 5 seconds d1/d2, then d1 timestamp gets updated to that of d2. After 5 seconds, when I create d1/d2/d3, only d2 timestamp gets updated to d3 but not that of d1.

Basically, my requirement is that not only the parent folder but all the folders from root to parent folder must get updated with the time of the parent folder.

Is there any way to update the timestamp of d1 with that of d3?

Please clarify.

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

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

发布评论

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

评论(3

总以为 2024-08-24 02:38:47
find . -type d -exec touch -m -r d3 {}\;

查找当前目录中的所有目录并将时间戳更新为当前时间...

find . -type d -exec touch -m -r d3 {}\;

Finds all directories in the current directory and updates the timestamp to the current time...

梦中的蝴蝶 2024-08-24 02:38:47
find . -type d -exec touch  -r d1/d2/d3 -m {} \;
touch options:
-r :reference file. The timestamp of this ref file will be used for touching.
-m :change the modification time.

这会找到pwd下的所有目录,并将每个目录的修改时间修改为d1/d2/d3目录的修改时间。假设您位于包含目录 d1 的目录中。

find . -type d -exec touch  -r d1/d2/d3 -m {} \;
touch options:
-r :reference file. The timestamp of this ref file will be used for touching.
-m :change the modification time.

This will find all the directories under pwd, and will modify the modification time of each to the modification time of d1/d2/d3 directory. It is assumed that you are in the directory that has directory d1.

梦魇绽荼蘼 2024-08-24 02:38:47

这将仅设置添加文件路径上的目录的修改时间。

所以在这棵树中

d1
d1/d2
d1/d2/d3  <-- this is the one we are adding
d1/d2a
d1/d2a/d3a

只有 d1d1/d2 会受到影响。

CHILD="d1/d2/d3"
DIR=`dirname "$CHILD"`
while [[ "$DIR" != "." ]]
do
    touch -m -r "$CHILD" "$DIR"
    DIR=`dirname "$DIR"`
done

This will set the modification time of only the directories that are on the path to the added file.

So in this tree

d1
d1/d2
d1/d2/d3  <-- this is the one we are adding
d1/d2a
d1/d2a/d3a

Only d1 and d1/d2 will be affected.

CHILD="d1/d2/d3"
DIR=`dirname "$CHILD"`
while [[ "$DIR" != "." ]]
do
    touch -m -r "$CHILD" "$DIR"
    DIR=`dirname "$DIR"`
done
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文