Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
Error is due to the data in the file being binary, Youyou can use strings command to see the stringshuman readable (i.e. strings) part which you would normally search. using grep
strings data | grep -i whatever
strings data | grep -i whatever
Error is due to the data being binary, You can use strings command to see the strings part which you would normally search.
strings data | grep -i whatever
Error is due to the data in the file being binary, you can use strings command to see the human readable (i.e. strings) part which you would normally search using grep