Friday, July 24, 2020

Find a string in a file


grep "processing" ./console.log


This command finds the processing string in a file. This command performance is better than doing less command and then grepping text.

No comments:

Post a Comment

zip an empty folder structure

  find . -maxdepth 1000 -type d -exec zip ftpeu.zip {} +