mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-15 18:22:55 +08:00
4 lines
195 B
Fish
4 lines
195 B
Fish
![]() |
function __fish_print_pacman_repos --description "Print the repositories configured for arch's pacman package manager"
|
||
|
sed -n -e 's/\[\(.\+\)\]/\1/p' /etc/pacman.conf | grep -v "#\|options"
|
||
|
end
|