1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-08-26 17:50:11 +03:00

bash-completion: use builtins when generating list

This commit is contained in:
Zbigniew Jędrzejewski-Szmek
2015-09-28 15:42:27 -04:00
parent b00c1cf9d6
commit db79008804

View File

@ -24,7 +24,7 @@ __contains_word () {
}
__get_names() {
systemd-path | cut -d: -f1 | sort -u
systemd-path | { while IFS=: read -r a b; do echo " $a"; done; }
}
_systemd_path() {