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
Apacman grep some localized text in getlistpackages method, and it doesn't work when the system isn't in english.
https://github.com/oshazard/apacman/blob/master/apacman#L349
For example, in french, must be something like that :
pacman -Qi | grep -e "^Nom " -e "^Taille installée " | \ awk '{if ($(NF-1) ~ /^[0-9]/) printf $(NF-1); print $NF}' | paste -s -d' \n' | \ sed -e 's/iB$//' -e 's/\.00K/K/' -e 's/\.00B/B/' | awk '{printf "%-10s %-40s\n",$2,$1}' | sort -h
I don't know how to fix that …
The text was updated successfully, but these errors were encountered:
Fix oshazard#81: Flag -L doesn’t work when not in en_US locale
7433224
No branches or pull requests
Apacman grep some localized text in getlistpackages method, and it doesn't work when the system isn't in english.
https://github.com/oshazard/apacman/blob/master/apacman#L349
For example, in french, must be something like that :
pacman -Qi | grep -e "^Nom " -e "^Taille installée " | \ awk '{if ($(NF-1) ~ /^[0-9]/) printf $(NF-1); print $NF}' | paste -s -d' \n' | \ sed -e 's/iB$//' -e 's/\.00K/K/' -e 's/\.00B/B/' | awk '{printf "%-10s %-40s\n",$2,$1}' | sort -h
I don't know how to fix that …
The text was updated successfully, but these errors were encountered: