this post was submitted on 02 Sep 2023
81 points (87.9% liked)
Programming
17354 readers
301 users here now
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Rules
- Follow the programming.dev instance rules
- Keep content related to programming in some way
- If you're posting long videos try to add in some form of tldr for those who don't want to watch videos
Wormhole
Follow the wormhole through a path of communities [email protected]
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I don't see why bash would be used at all here. If you want something that doesn't need another interpreter, then just compile a binary.
Possible use case: scripts that are found in a codebase for doing... Codebase things. Like setting up dev environment for example.
But then building it still requires whatever scripting tool you use. Including the bash-ified version would not for practice, as it wouldn't be very human readable and would have to be kept in sync with the source script. It's much cleaner and simpler to just require python for your build environment.
look into devenv.sh for that constrained use-case
That's a use case for Docker