We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When we want to debug settings we always ask for the output of exercism configure with the hint to redact/remove the token from the ouptut.
exercism configure
So this time, I was only interested in the API URL, so I asked for the output of exercism configure 2>&1 | grep -- --all this feels very clumsy.
exercism configure 2>&1 | grep -- --all
Can we have an interface like with git config where git config foo reads and git config foo bar writes?
git config
git config foo
git config foo bar
The text was updated successfully, but these errors were encountered:
I like this idea -- it's very clean!
Sorry, something went wrong.
No branches or pull requests
When we want to debug settings we always ask for the output of
exercism configure
with the hint to redact/remove the token from the ouptut.So this time, I was only interested in the API URL, so I asked for the output of
exercism configure 2>&1 | grep -- --all
this feels very clumsy.Can we have an interface like with
git config
wheregit config foo
reads andgit config foo bar
writes?The text was updated successfully, but these errors were encountered: