@IntegralDuChemin do it like this
something | grep ".00" | grep -v ".00*"
@freemo Ah I see. Just a stupid question - what means "something" in that case? Another command for displaying my file like "less file"? Thanks in any case
@IntegralDuChemin yea another command, find makes the most sense if you wanna go recursive
@freemo Great thanks. In my case less should do as well 🙂
@IntegralDuChemin the -v will inverse grep (apply NOT)