mao@lemmy.sdf.org to Programmer Humor@lemmy.ml · 5 months agoDamn no integrated advanced AI-driven solution that analyzes patterns and just predicts the errors? 🤨lemmy.sdf.orgimagemessage-square71fedilinkarrow-up1399arrow-down18
arrow-up1391arrow-down1imageDamn no integrated advanced AI-driven solution that analyzes patterns and just predicts the errors? 🤨lemmy.sdf.orgmao@lemmy.sdf.org to Programmer Humor@lemmy.ml · 5 months agomessage-square71fedilink
minus-squarerodbiren@midwest.sociallinkfedilinkEnglisharrow-up9·5 months agoIt’s a command line tool which filters for all lines containing the query. So something like cat log.txt | grep Error5 Would output only lines containing Error5
minus-squareporous_grey_matter@lemmy.mllinkfedilinkarrow-up9·5 months agoYou can just do grep Error5 log.txt
minus-squarebiribiri11@lemmy.mllinkfedilinkarrow-up12·5 months agoIn the back of my mind I know this is there, but the cat | grep pattern is just muscle memory at this point
minus-squareallywilson@lemmy.mllinkfedilinkarrow-up3·5 months agoI’ve been ‘told off’ so many times by the internet for my cat and grep combos that I still do it, then I remove the cat, it still works, and I feel better. shrug
minus-squareexpr@programming.devlinkfedilinkarrow-up3·5 months agoJust remember that if you aren’t actually concatenating files, cat is always unnecessary.
minus-squareMehBlah@lemmy.worldlinkfedilinkarrow-up1·5 months agoor if its a complex error cat log.txt|grep keyword1|grep keyword 2 and so on.
It’s a command line tool which filters for all lines containing the query. So something like
cat log.txt | grep Error5
Would output only lines containing Error5
You can just do
In the back of my mind I know this is there, but the
cat | grep
pattern is just muscle memory at this pointI’ve been ‘told off’ so many times by the internet for my cat and grep combos that I still do it, then I remove the cat, it still works, and I feel better. shrug
Just remember that if you aren’t actually concatenating files,
cat
is always unnecessary.for me as well.
or if its a complex error cat log.txt|grep keyword1|grep keyword 2 and so on.