如何捕获字符串命令的输出?

如何捕获字符串命令的输出?

如何从命令行将 strings 命令的输出捕获到.txt文件中?

答案1

您使用重定向:

strings file_name > output_name.txt

strings写入标准输出(而不是像某些程序那样写入标准错误),因此您不必执行任何特殊操作。

相关内容