문제

I see pacman has this option

--noprogressbar  do not show a progress bar when downloading files

That applies to pacman -S pacman -R pacman -U. However I would like to always use this option when appropriate. Is that possible?

도움이 되었습니까?

해결책

Just put a function in one of your bash files. Something like

pacman() {
  [[ $@ =~ -[RSU] ]] && set -- "$@" --noprogressbar
  command pacman "$@"
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top