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
printf '' | expac -S '%n' - | wc -l 8814
Compare to pacman --print:
pacman --print
% printf '' | pacman -Sddp - error: argument '-' specified with empty stdin
A workaround is expac -S '%n' - '' or xargs -r expac -S '%n' -, assuming the user expects this behavior.
expac -S '%n' - ''
xargs -r expac -S '%n' -
The text was updated successfully, but these errors were encountered:
Fix queued, will hopefully be able to push tonight.
Sorry, something went wrong.
851a09c
No branches or pull requests
Compare to
pacman --print
:A workaround is
expac -S '%n' - ''
orxargs -r expac -S '%n' -
, assuming the user expects this behavior.The text was updated successfully, but these errors were encountered: