diff options
author | Excited-bore <31372378+excited-bore@users.noreply.github.com> | 2024-12-02 14:38:40 +0100 |
---|---|---|
committer | Luca Boccassi <luca.boccassi@gmail.com> | 2024-12-02 17:56:12 +0100 |
commit | f6749c69a048ee0a96237b3b192ad451013ee4ac (patch) | |
tree | b0c321c21e17a1d49776c3917ec9c01fcfb540d2 /shell-completion/bash/systemctl.in | |
parent | ukify: ellipsize CN to not exceed maximum length (diff) | |
download | systemd-f6749c69a048ee0a96237b3b192ad451013ee4ac.tar.xz systemd-f6749c69a048ee0a96237b3b192ad451013ee4ac.zip |
Bash completion: no more ANSI colorcode in pathnames
Bash completion: no more ANSI colorcode in pathnames
Diffstat (limited to '')
-rw-r--r-- | shell-completion/bash/systemctl.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell-completion/bash/systemctl.in b/shell-completion/bash/systemctl.in index f4576c4355..f2219f23ea 100644 --- a/shell-completion/bash/systemctl.in +++ b/shell-completion/bash/systemctl.in @@ -9,7 +9,7 @@ __systemctl() { local mode=$1; shift 1 - systemctl $mode --full --legend=no --no-pager --plain "$@" 2>/dev/null + SYSTEMD_COLORS=0 systemctl $mode --full --legend=no --no-pager --plain "$@" 2>/dev/null } __systemd_properties() { |