How to save specific lines of command line outputs
Solution 1:
You simply need to exclude lines that have text in them. Use this grep in your command:
grep -v '[A-Za-z]'
You simply need to exclude lines that have text in them. Use this grep in your command:
grep -v '[A-Za-z]'