i love this person’s work; i’ve been working in the linux sphere for over 20 years but this person always teaches something that’s new to me and more helpful than the tools i’ve been using to get the job done; sed/awk in this case. (plus, the sense of humor also makes it fun to watch).
i wish i were as rich as my fellow software engineers so that i can support her work because i’m convinced we need it in a world where people no longer have the same opportunities i had to learn this kind of tech because their smartphones inadvertently hide needful knowledge in the abstractions that make smartphones work.
She does a great job. Im trying to add in a couple of her videos when I see them into the different communities. I usually go to awk
to be honest, so I completely blanked on columns
. I knew it existed from like 10 years ago, but forgot what I can use it for. I learned something form this video :)
We need more entertaining Linux/open source people.
I’ve been following her for the past year, it’s a pity she doesn’t have a one time contribution scheme set up. I also can’t support everyone but judging from the donations on KDE people do tend to give small amounts and it really helps. Gonna try to contact her and see if she can accept something like that
I don’t think they do it to make us dumber (there are other methods for that) but to make it accessible to people who don’t already know better.
So, in this case, inadvertent is correct; Although it’s not without side effects.
I doubt anyone has ever regretted spending some time familiarizing themselves with the POSIX, util-linux, and GNU coreutils commands. You can do a lot by just piping these (mostly) simple tools together.
Something else, all of the GNU coreutils have their own info [command]
terminal command, and often the info page is incredibly easy to read, full of example pages and highly granular descriptions of flags, error messages, and the like.
Really cool tool
Her mentions of awk reminded me of a guy at my last job who was an absolute god with awk, but making changes to scripts he made were a nightmare because no one else could figure out what he was doing, and everything crashed and burned from small changes.
Sometimes a small python script that is readable is better for long term support.
Sometimes
Always*
Shell scripting for serious tasks should crash and burn, wherever possible at least
For all that I shit talk Microsoft, Powershell does seem better suited for production tasks than bash and friends…
Damn, I could’ve avoided hours of scrolling up by now if I knew about this before.
If I need the top lines I usually just pipe output to less
, but column
is definitely going to help a lot!
That’s the first time i read about column…