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. |
Beta Was this translation helpful? Give feedback.
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
|
Beta Was this translation helpful? Give feedback.
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
aura
prints the help menu (likeaura -h
oraura --help
), which isn't very useful.Some AUR helpers like
paru
oryay
have aliased the program command to$program -Syu
Sources:
I think aliasing
aura
toaura -Syu
instead of displaying the help menu would be a better default.Thoughts?
Beta Was this translation helpful? Give feedback.
All reactions