I'd make sure the scripts work with edge cases like unexpected characters in file names (new lines and so on), especially if you don't control the names yourself. Maybe prompt the AI to do some tests if that's possible?
And keep backups. Not because you're using AI, necessarily. And not because you're using shell scripts. But just in case.
The "bubble" part doesn't concern you. If it works for you, it works for you. Whether or not it's a "bubble" is more of an economic issue at a larger scale.
I too used shell a lot back in the day. I once wrote a 5000+ line system to handle database administration and a bespoke email system with retries to handle flaky communications. But that was a long time ago and requirements that forced the use of shell. These days I still write small shell scripts but for larger scripts I use python. I find that shell is even better when interfacing with a Linux system than python, but python is better at higher-level logic and control.
Interesting. I use a lot of python and nodejs for my apps, maybe this shell angle is a weird quirk I developed for no particular reason. I keep a seperate repo called “manager” and use it to manage my other parts of the stack like, “run tests for each repo, bump version, commit to git” with a single CLI command. I have no idea why that started. My guess is an agent created a shell script and I just went with it and built up around it. Good to hear other perspectives. Thanks!
I mean, they're useful to you, presumably, so who cares if it is a weird bubble. I'll tell you about the weird bubble I've tried. So you start with bash, then python, ask it to do it in rust for speed, and then for shiggles, have it do it in assembly! The problem with assembly is that it's not portable, and I'm currently on a MacBook which is arm, and I still need to be on x86, so maybe I'll try for c (and not c++) next.
There is a reshaping of what we think is “right”. Like, I am less and less interested in SDKs since I can just ask for a lightweight, custom, integration into anything I want based on API docs. I mean, I still use a lot of SDKs…buuuut it feels like I’m forcing the AI to use them for my monkey brain’s sake. Is predefined mashup of structured services even necessary anymore?