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我使用的一个存档文件的内容
.tar
tar -tvf archive.tar
我希望使用类似的格式来列出更多文件的内容,但是
tar -tvf *.tar
没有按我的预期工作。
列出多个存档文件内容的最佳单行解决方案是什么?.tar
这有帮助吗?
for f in *.tar do echo "content of $f:" tar tvf "$f" done
根据要求的一个班轮
find . -type f -name "*.tar" | xargs -n 1 -i bash -c "echo {}; tar tvf {}; echo" | less