To follow Unix/Linux CLI style a little more closely, could you add support for the options -t, -w, etc. to appear before the required positional arguments? That is, currently the open command only allows the -w option after the URL positional argument, like this…
chrome-cli open url -w id
It would be helpful, especially to users with years of Unix/Linux CLI experience, if the -w option would be allowed before the URL positional argument, like this…
chrome-cli open -w id url
And the same would apply to all other CLI options for all of the commands.
It could be implemented to allow the options before OR after the positional arguments, making it convenient and backwards compatible with the current syntax.
To follow Unix/Linux CLI style a little more closely, could you add support for the options
-t
,-w
, etc. to appear before the required positional arguments? That is, currently theopen
command only allows the-w
option after the URL positional argument, like this…It would be helpful, especially to users with years of Unix/Linux CLI experience, if the
-w
option would be allowed before the URL positional argument, like this…And the same would apply to all other CLI options for all of the commands.
It could be implemented to allow the options before OR after the positional arguments, making it convenient and backwards compatible with the current syntax.