Replies: 2 comments 3 replies
|
In my experience it's actually quite common for programs to default to "help" if given no other options. Thank you for the suggestion, but in this case I will be maintaining the current behaviour. |
1 reply
|
It's easy to make a wrapper to #!/bin/bash
if [[ $# -eq 0 ]]; then
/usr/bin/aura -Syu && /usr/bin/aura -Ayu
else
/usr/bin/aura $@
fi
|
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Currently, running
auraprints the help menu (likeaura -horaura --help), which isn't very useful.Some AUR helpers like
paruoryayhave aliased the program command to$program -SyuSources:
I think aliasing
auratoaura -Syuinstead of displaying the help menu would be a better default.Thoughts?
All reactions