在 ls bash 输出中添加 md5sum

发布于 2024-11-27 05:49:08 字数 350 浏览 0 评论 0原文

我正在尝试查找文件并将其 md5sum 添加到表中。

find /store/01 -name "*.fits" -exec chmod -x+r {} \; -exec ls -l {} \; | tee ALL_FILES.LOG

如何在 ls -l 输出中添加文件的 md5sum?

我想让它输出 ls -l 和 md5sum 结果的额外列,

例如:

-rw-r--r-- 1 data user 221790 Jul 28 15:01 381dc9fc26082828ddbb46a5b8b55c03 myfile.fits 

I am trying to find files and add their md5sum into a table.

find /store/01 -name "*.fits" -exec chmod -x+r {} \; -exec ls -l {} \; | tee ALL_FILES.LOG

How do I add in the ls -l output the md5sum of the file?

I would like to have it output the ls -l and an extra column of md5sum result

E.g.:

-rw-r--r-- 1 data user 221790 Jul 28 15:01 381dc9fc26082828ddbb46a5b8b55c03 myfile.fits 

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

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

发布评论

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

评论(3

嘿嘿嘿 2024-12-04 05:49:09

这一行将执行您想要的操作(通过添加 /store/01 -name "*.fits" -exec chmod -x+r {} \; 来编辑查找搜索以满足您的需求而不是我的示例中的 .-type f):

$ find . -type f -exec sh -c 'printf "%s %s \n" "$(ls -l $1)" "$(md5sum $1)"' '' '{}' '{}' \;

示例:

/etc/samba$ find . -type f -exec sh -c 'printf "%s %s \n" "$(ls -l $1)" "$(md5sum  $1)"' '' '{}' '{}' \; 
-rw-r--r-- 1 root root 8 2010-03-09 02:03 ./gdbcommands 898c523d1c11feeac45538a65d00c838  ./gdbcommands 
-rw-r--r-- 1 root root 12464 2011-05-20 11:28 ./smb.conf 81ec21c32bb100e0855b96b0944d7b51  ./smb.conf 
-rw-r--r-- 1 root root 0 2011-06-27 10:57 ./dhcp.conf d41d8cd98f00b204e9800998ecf8427e  ./dhcp.conf 

要获得所需的输出,您可以删除字段 $8,如下

/etc/samba$ find . -type f -exec sh -c 'printf "%s %s \n" "$(ls -l $1)" "$(md5sum  $1)"' '' '{}' '{}' \; | awk '{$8=""; print $0}'
-rw-r--r-- 1 root root 8 2010-03-09 02:03  898c523d1c11feeac45538a65d00c838 ./gdbcommands
-rw-r--r-- 1 root root 12464 2011-05-20 11:28  81ec21c32bb100e0855b96b0944d7b51 ./smb.conf
-rw-r--r-- 1 root root 0 2011-06-27 10:57  d41d8cd98f00b204e9800998ecf8427e ./dhcp.conf

HTH

This one liner will do what do you want (edit the find search to fit your needs by adding the /store/01 -name "*.fits" -exec chmod -x+r {} \; instead of the . -type f in my example):

$ find . -type f -exec sh -c 'printf "%s %s \n" "$(ls -l $1)" "$(md5sum $1)"' '' '{}' '{}' \;

Example:

/etc/samba$ find . -type f -exec sh -c 'printf "%s %s \n" "$(ls -l $1)" "$(md5sum  $1)"' '' '{}' '{}' \; 
-rw-r--r-- 1 root root 8 2010-03-09 02:03 ./gdbcommands 898c523d1c11feeac45538a65d00c838  ./gdbcommands 
-rw-r--r-- 1 root root 12464 2011-05-20 11:28 ./smb.conf 81ec21c32bb100e0855b96b0944d7b51  ./smb.conf 
-rw-r--r-- 1 root root 0 2011-06-27 10:57 ./dhcp.conf d41d8cd98f00b204e9800998ecf8427e  ./dhcp.conf 

To get the output as you wanted, you can remove the field $8 as follows

/etc/samba$ find . -type f -exec sh -c 'printf "%s %s \n" "$(ls -l $1)" "$(md5sum  $1)"' '' '{}' '{}' \; | awk '{$8=""; print $0}'
-rw-r--r-- 1 root root 8 2010-03-09 02:03  898c523d1c11feeac45538a65d00c838 ./gdbcommands
-rw-r--r-- 1 root root 12464 2011-05-20 11:28  81ec21c32bb100e0855b96b0944d7b51 ./smb.conf
-rw-r--r-- 1 root root 0 2011-06-27 10:57  d41d8cd98f00b204e9800998ecf8427e ./dhcp.conf

HTH

眼角的笑意。 2024-12-04 05:49:09

这会起作用:

find /store/01 -name "*.fits" -exec chmod -x+r {} \; \
   | awk '{
line=$0;
cmd="md5sum " $9;
cmd|getline;
close(cmd);
print line, $1;
}' > ALL_FILES.LOG

this will work:

find /store/01 -name "*.fits" -exec chmod -x+r {} \; \
   | awk '{
line=$0;
cmd="md5sum " $9;
cmd|getline;
close(cmd);
print line, $1;
}' > ALL_FILES.LOG
孤星 2024-12-04 05:49:09

这个怎么样?

find /store/01 -name "*.fits" -exec chmod -x+r {} \; \
   |  xargs -i md5sum {} > ALL_FILES.LOG

ls 搞砸了,而且不需要。

编辑如果您“真的”想要ls

for file in `find /store/01 -name "*.fits"`; do
   chmod -x+r $file; 
   echo -n `ls -l $file` " " ; 
   echo ` md5sum $file | cut -d " " -f 1`; 
done

HTH

Steve

How about this?

find /store/01 -name "*.fits" -exec chmod -x+r {} \; \
   |  xargs -i md5sum {} > ALL_FILES.LOG

The ls is messing it up and is not needed.

Edit If you "really" want that ls

for file in `find /store/01 -name "*.fits"`; do
   chmod -x+r $file; 
   echo -n `ls -l $file` " " ; 
   echo ` md5sum $file | cut -d " " -f 1`; 
done

HTH

Steve

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