Replies: 1 comment 14 replies
-
What other CLI that you know has this kind of syntax? |
Beta Was this translation helpful? Give feedback.
14 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I'm trying to write script to help managing Kubernetes pods. These pods have metadata like
app
orbranch
. An idea is that I'd have bash script that will take name of anapp
and then name ofbranch
and then run passed command in pod. Something like thisSo I tried to do it this way
However, Bashly does not allow to use
args
at root level andcommands
in the same time. I can do it this wayBut for usability - it'd be great to have name of command at the end, since that's something that people would change very often. Thank you in advance for any ideas.
Beta Was this translation helpful? Give feedback.
All reactions