1 comments

  • janandonly1 hour ago
    Two thought:<p>1. I feel the use of AWK, SED, GREP and Bash (to name a few) is general waning. I rarely see it outside of HN posts. I wish I were better at using it. Sometimes for a special need I’ll ask a LLM to write me a script in bash just to keep this spirit alive.<p>2. On the other hand, I’ve written a book and added an index by using Microsoft Word, and it was basically pretty easy to add. I don’t know why I should want to go back to a world of intricate command line tools to do a job that should just be easy enough?
    • skydhash15 minutes ago
      &gt; I feel the use of AWK, SED, GREP and Bash (to name a few) is general waning. I rarely see it outside of HN posts. I wish I were better at using<p>You can find plenty of examples with a quick github search[0]. The query in the url is<p><pre><code> path:bin dotfiles language:Shell </code></pre> A shell script is my first option for any automation. sed is for quick transformations and awk is for more procedural ones.<p>[0] <a href="https:&#x2F;&#x2F;github.com&#x2F;search?q=path%3Abin+dotfiles+language%3AShell&amp;type=code&amp;l=Shell" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;search?q=path%3Abin+dotfiles+language%3AS...</a>