192
What stupidly easy tech solution do people gloss over all of the time?
(kbin.melroy.org)
A loosely moderated place to ask open-ended questions
Search asklemmy ๐
If your post meets the following criteria, it's welcome here!
Looking for support?
Looking for a community?
~Icon~ ~by~ ~@Double_A@discuss.tchncs.de~
Awk, sed, and grep.
You might have a different type of person in mind than other commenters. Most commenters had such people in mind who won't install a password manager or an ad-blocker, or won't hard reboot their Windows unless supervised. Having said that, I don't think that even if you had technical people in mind this fits the question. They tend to take substantial more effort to learn and use effectively than the scope set by the original question. I thought this question was for little things that have a quick, lasting, and substantial effect. Learning awk and sed is a different thing entirely, I think of those more as productivity tools you can invest in mastering, and pay off in the long run.
mind expanding on what these solve?
Awk is a helps you do any kind of processing of semi structured text data.
Sed is a stream editor which lets you edit a file using commands. Which is tedious until you need to replace something in a bunch if files or make very specific edits across a large number of files.
Grep is just find pattern in text file.