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-square73fedilinkarrow-up1387arrow-down18
arrow-up1379arrow-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-square73fedilink
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-squareexpr@programming.devlinkfedilinkarrow-up3·5 months agoJust remember that if you aren’t actually concatenating files, cat is always unnecessary.
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-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 pointJust remember that if you aren’t actually concatenating files,
cat
is always unnecessary.I’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
for me as well.
or if its a complex error cat log.txt|grep keyword1|grep keyword 2 and so on.