Shell scripting

Many trivial scripts, over time, morph into not-so-trivial scripts.
Call it "scope creep" if you'd like.
I can hear folks right now, "Well if you put a little more thought into it in the design phase..."
I'm a little like that myself. But even the best of us find ourselves in that place once in a while. Less often as we gain experience, but even so - we still have those scripts we wrote when we had less experience. And there are other factors: However you got there, your once-trivial script isn't so trivial any more and now you have to think about any or all of the following (and maybe other things that I haven't imcluded here, but that's another topic): As with so many other things in life, it's simpler to handle these things if yuo do so in a consistent manner. One way to achieve that is to build yourself a script template and start new scripts by making a copy of the template and adding project-specific functionality to it.
If you know at the outset that a new script is going to be non-trivial, start the project by allowing for all of these things, even if you might not use all of them. If you catch a trivial script right as it's about to explode into a monster, you can fairly simply shoehorn it into your template, then unleash it to grow as it needs to... but keep it within the framework of the template. If your template includes some parts that aren't used (yet), that seems like a small price to pay for the savings in development effort. If you've got a script that has already got some complexity to it, it -might- still be worthwhile to apply your template to it, depending upon how the original script was written.

My template, which I'll probably post here at some point, handles the features listed above as follows:

To parse command line arguments, I use a bit of code that was originally written to parse linux kernel command line arguments as retrieved from /proc/cmdline
More text soon - I'm taking a break to update this argument parsing functionality.