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.
我想提取一个巨大的单词表并将其内容用作外壳的“流”。
这将允许执行字典攻击而不必解压缩整个单词表。
多一点搜索,我刚刚在这里找到了这个:
7z e -so -bd "$@" 2>/dev/null compressed_file.7z | tail
这将打印压缩文件的最后 10 行,而无需提取或存储它,将所有错误发送到/dev/null. 这正是我所需要的!
/dev/null