cat nohup.ws1 |grep 440 |more
The result is binary file (standard input) matches, which is forced to be interpreted as a text file by adding parameters
The modified command is as follows:
cat nohup.ws1 |grep -a 440 |more
cat nohup.ws1 |grep 440 |more
The result is binary file (standard input) matches, which is forced to be interpreted as a text file by adding parameters
The modified command is as follows:
cat nohup.ws1 |grep -a 440 |more