strings
命令在 Linux 中用于在二進制文件(例如可執行文件、庫文件等)中查找字符串。要使用 strings
命令查找字符串,請按照以下步驟操作:
打開終端(Terminal)。
使用 cd
命令導航到包含目標文件的目錄。
輸入 strings
命令,后跟要查找的字符串。例如,要在名為 example.txt
的文件中查找字符串 “hello”,請輸入:
strings example.txt | grep "hello"
這將會在 example.txt
文件中查找包含 “hello” 的所有字符串,并將結果輸出到終端。grep
命令用于過濾輸出結果,只顯示包含指定字符串的行。
注意:strings
命令可能無法在二進制文件中找到以 null 結尾的字符串。如果需要查找這種字符串,可以考慮使用其他工具,如 findstr
(Windows)或 grep -P
(Linux)。