gpt4 book ai didi

linux - Bash - 编辑代码行

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:05:49 25 4
gpt4 key购买 nike

这个问题与Bash - Compare 2 lists of files with their md5 check sums有关

我的问题是如何编辑以下代码以显示文件的完整路径而不是仅显示文件名:

awk -F"/" 'FNR==NR{filearray[$1]=$NF; next }!($1 in filearray){printf "%s has a different md5sum\n",$NF}' file1 file2

awk -F"/" 'FNR==NR{filelist[$NF]=$NF; next;}!($NF in filelist){printf "%s is an extra file",$NF}' file1 file2

有关更多信息,请查看其他问题!

感谢大家的时间和帮助!

最佳答案

使用 GNU Awk 字符串操作 split-function , 以拆分匹配行,在本例中为 $0 并将其作为单个元素存储在 array 中。

 awk -F"/" 'FNR==NR{filearray[$1]=$NF; next }!($1 in filearray){split($0,array," ");printf "%s has a different md5sum or do not exist in the vanilla core files\n",array[2]}' file2 file1
/home/user/vanila/file-4.php has a different md5sum or do not exist in the vanilla core files

和文件

 awk -F"/" 'FNR==NR{filelist[$NF]=$NF; next;}!($NF in filelist){split($0,array," "); printf "%s is an extra file\n",array[2]}' file1 file2
/home/user/file-1.1.php is an extra file

关于linux - Bash - 编辑代码行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41618633/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com