gpt4 book ai didi

c - 如何使用shell脚本比较两个文件,一个具有不同的字段,另一个是c文件?

转载 作者:行者123 更新时间:2023-11-30 21:08:50 24 4
gpt4 key购买 nike

我有以下两个文件:

文件1:

#include<stdio.h>   printf,scanf
#include<string.h> strcpy,strcat,strlen
#include<time.h> time

文件2.c:

int main {
char str1[20] = "BeginnersBook";
printf("Length of string str1: %d", strlen(str1));
return 0;
}

我们必须在file2中搜索file1(field2)的函数。如果它们存在,那么我们应该将结果写入另一个名为output的文件中。它应该只包含文件名,并且应该有适当的头文件,例如

File2:headerfile1,headerfile2

这可以用grepawk来做吗?

最佳答案

使用以下脚本

#!/bin/sh
HEAD=
while read p; do
i=1;
for word in $p;do
if [ "$i" = "1" ];then
HEAD=$word
echo "header = $HEAD"
else
FOUND=0
for j in $(echo "$word" | tr "," "\n");do
if grep -Fq "$j" file2.c
then
FOUND=1
fi
if ["$FOUND" = "1" ];then
#write it into your c file; I am skipping that code
fi
done
fi
i=0
done
done < file1

关于c - 如何使用shell脚本比较两个文件,一个具有不同的字段,另一个是c文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36687256/

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