Sfoglia il codice sorgente

add reflect_mirrorlist

pull/1/head
10sr 11 anni fa
parent
commit
3a534be993
1 ha cambiato i file con 12 aggiunte e 0 eliminazioni
  1. +12
    -0
      bashrc

+ 12
- 0
bashrc Vedi File

@@ -234,6 +234,18 @@ null type pacmatic && {
export PACMAN="pacmatic"
}

_pacman_update_mirrorlist_with_reflector(){
ml=/etc/pacman.d/mirrorlist
cmd="$(expr "$(grep reflector $ml)" : '# With: *\(.*\)')"
if test -z "$cmd"
then
cmd="reflector --verbose -l 5 --sort rate --save /etc/pacman.d/mirrorlist"
fi
sudo $cmd
}
null type reflector && test -f /etc/pacman.d/mirrorlist && \
alias reflect_mirrorlist=_pacman_update_mirrorlist_with_reflector

null type apt-get && {
alias aupgrade="sudo apt-get autoremove --yes && \
sudo apt-get update --yes && sudo apt-get upgrade --yes"


Caricamento…
Annulla
Salva