所以我试图部分匹配一个字段中的字符串,然后将该字段与单独文件中的另一个字段一起使用,
输入示例 -
输入1.txt:
example/world
example/forever
输入2.txt
example123
example234
预期输出.txt:
example123/world
example234/world
example123/forever
example234/forever
所以基本上使用 AWK 将 input1.txt 分成 2 个字段,使用 -
awk -F"/"
这意味着第一行 $1 是example
$2 是world
然后example
通过部分匹配 input2.txt 中的 $1 来检查 input2.txt 是否包含,然后找到这些匹配项并将它们与 input1 的 $2 组合。