Ubuntu Strings本身并非插件式工具,不过可结合其他工具实现类似插件功能,以下是一些实用组合:
strings /path/to/file | grep "ERROR"
strings /path/to/file | awk '{print $1, $2}'
sed -i 's/DEBUG/INFO/g' /path/to/file