In my decade-plus of maintaining my dotfiles, I’ve written a lot of little shell scripts. Here’s a big list of my personal favorites.

  • Evan Hahn
  • esa@discuss.tchncs.de
    link
    fedilink
    arrow-up
    1
    ·
    9 hours ago

    re: mksh I have snippets in my editor for shebangs++. E.g. #!<tab><enter> nets me

    #!/bin/bash
    set -euo pipefail
    

    or

    #!/usr/bin/env python3
    # pyright: strict
    

    etc