Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要比较两个档案 tar.gz,而不是解压缩它们,列出第一个拱门中不在第二个拱门中的文件名。
我尝试了几种方法,但每一种都失败了。我是 bash 的新手。
comm -23 <(tar -tzf 1.tar.gz | sort) <(tar -tzf 2.tar.gz | sort)