archlinux: fix pacmanallkeys URL, make curl silent

Also make all functions local as to not spill variables into the
global namespace.
This commit is contained in:
Marc Cornellà 2016-08-24 08:51:06 +02:00
parent 98ea6414d8
commit b90c8944b4
1 changed files with 5 additions and 1 deletions

View File

@ -68,6 +68,8 @@ paclist() {
}
pacdisowned() {
emulate -L zsh
tmp=${TMPDIR-/tmp}/pacman-disowned-$UID-$$
db=$tmp/db
fs=$tmp/fs
@ -84,12 +86,14 @@ pacdisowned() {
}
pacmanallkeys() {
curl https://www.archlinux.org/{developers,trustedusers}/ | \
emulate -L zsh
curl -s https://www.archlinux.org/people/{developers,trustedusers}/ | \
awk -F\" '(/pgp.mit.edu/) { sub(/.*search=0x/,""); print $1}' | \
xargs sudo pacman-key --recv-keys
}
pacmansignkeys() {
emulate -L zsh
for key in $*; do
sudo pacman-key --recv-keys $key
sudo pacman-key --lsign-key $key