@[email protected] to Programmer [email protected] • 7 months agoDamn no integrated advanced AI-driven solution that analyzes patterns and just predicts the errors? 🤨lemmy.sdf.orgimagemessage-square69fedilinkarrow-up1366arrow-down19
arrow-up1357arrow-down1imageDamn no integrated advanced AI-driven solution that analyzes patterns and just predicts the errors? 🤨lemmy.sdf.org@[email protected] to Programmer [email protected] • 7 months agomessage-square69fedilink
minus-square@[email protected]linkfedilinkEnglish8•7 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-square@[email protected]linkfedilink12•7 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-square@[email protected]linkfedilink3•7 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-square@[email protected]linkfedilink3•7 months agoJust remember that if you aren’t actually concatenating files, cat is always unnecessary.
minus-square@MehBlahlink1•7 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.