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:
@ -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() {
|
||||
|
Reference in New Issue
Block a user