This is referencing something back a good ways, but for typing out long commands, this is exactly the usecase of https://github.com/casey/just , and if you need to do something slightly more complicated like making a deploy task that'll auto-build a jar you might want to look into GNU Make. A lot of people don't consider make much these days, but it fits really well into the part of the ecosystem around dealing with the build process of using the clojure cli.
@suskeyhose babashka has a task runner which is inspired by just
Oh cool! I saw you talking about a babashka task runner, but I'll admit I haven't really looked into babashka just yet.
Or at least not since a long time ago, back when I was starting with Clojure.
It's explained here, in case you want to have a look: https://book.babashka.org/#tasks
Thanks!