You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there, first of all thanks for this great framework, really well done. I just have a question to an use case I have.
I created a new script, let's call it foo, where I pass arguments and options.
This works fine as expected:
➜ ./foo --myvalue=test ssh
[ info] test
ssh
This not:
➜ ./foo ssh --myvalue=test
[ info] false
ssh
I'd like to be able to put argument ssh both before the options and also the other way round, this probably means switching $1 with $2 when need here. Any suggestions on how this could be implemented in a clean way? Thanks;)
The text was updated successfully, but these errors were encountered:
Hi there, first of all thanks for this great framework, really well done. I just have a question to an use case I have.
I created a new script, let's call it
foo
, where I pass arguments and options.This works fine as expected:
This not:
I'd like to be able to put argument
ssh
both before the options and also the other way round, this probably means switching$1
with$2
when need here. Any suggestions on how this could be implemented in a clean way? Thanks;)The text was updated successfully, but these errors were encountered: