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
ata.toml
This would make it easier to add the binary to the bin folder, place the config in some default path, and then run
bin
$ ata
without extra flags.
For now, this can be achieved by adding the following script to the bin folder (for example, ~/.local/bin):
~/.local/bin
#!/usr/bin/env bash /path/to/ata/binary --config=/path/to/config/toml "$@"
Thanks to "$@", this will accept arbitrary arguments to ata.
"$@"
ata
The text was updated successfully, but these errors were encountered:
Solution to this is provided in #21
Sorry, something went wrong.
Fixed in #23.
No branches or pull requests
This would make it easier to add the binary to the
bin
folder, place the config in some default path, and then runwithout extra flags.
For now, this can be achieved by adding the following script to the
bin
folder (for example,~/.local/bin
):Thanks to
"$@"
, this will accept arbitrary arguments toata
.The text was updated successfully, but these errors were encountered: