标签: linux awk sed
我希望将file1.txt内容与file2.txt的最后n个文件内容进行比较。有人可以使用shell脚本中的任何内容帮助识别此逻辑。 例如,如果file1.txt有10行,则应该比较file2.txt的最后10行的差异。
答案 0 :(得分:5)
使用bash的process substitution <()和command substitution $()。
<()
$()
diff file1.txt <(tail -n $(wc -l < file1.txt) file2.txt)