mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-28 22:03:12 +00: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
|