diff options
author | Felipe Sateler <fsateler@users.noreply.github.com> | 2016-04-19 01:23:01 -0300 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2016-04-19 00:23:01 -0400 |
commit | 673fca32be277e6b73ed5c114768e4c64370e16e (patch) | |
tree | d107dc6c6c8aadcb0f2e829f62f6b1fbe3a84d85 /shell-completion | |
parent | c54318c66f542b0713fdcadfd6fc6fb1fffe0a78 (diff) |
zsh-completion: remove non-portable uses of \s in awk (#3063)
Diffstat (limited to 'shell-completion')
-rw-r--r-- | shell-completion/zsh/_coredumpctl | 2 | ||||
-rw-r--r-- | shell-completion/zsh/_networkctl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/shell-completion/zsh/_coredumpctl b/shell-completion/zsh/_coredumpctl index 833c7e2bb1..e4c04a697f 100644 --- a/shell-completion/zsh/_coredumpctl +++ b/shell-completion/zsh/_coredumpctl @@ -16,7 +16,7 @@ _coredumpctl_command(){ cmd="${${_coredumpctl_cmds[(r)$words[1]:*]%%:*}}" if (( $#cmd )); then # user can set zstyle ':completion:*:*:coredumpctl:*' sort no for coredumps to be ordered by date, otherwise they get ordered by pid - _dumps=( "${(foa)$(coredumpctl list | awk 'BEGIN{OFS=":"} /^\s/ {sub(/[[ \t]+/, ""); print $5,$0}' 2>/dev/null)}" ) + _dumps=( "${(foa)$(coredumpctl list --no-legend | awk 'BEGIN{OFS=":"} {sub(/[[ \t]+/, ""); print $5,$0}' 2>/dev/null)}" ) if [[ -n "$_dumps" ]]; then _describe -t pids 'coredumps' _dumps else diff --git a/shell-completion/zsh/_networkctl b/shell-completion/zsh/_networkctl index a47e967f66..61f173b78e 100644 --- a/shell-completion/zsh/_networkctl +++ b/shell-completion/zsh/_networkctl @@ -14,7 +14,7 @@ _networkctl_command(){ local -a _links cmd="${${_networkctl_cmds[(r)$words[1]:*]%%:*}}" if [ $cmd = "status" ]; then - _links=( "${(foa)$(networkctl list --no-legend | awk 'BEGIN{OFS=":"} /^\s/ {sub(/[[ \t]+/, ""); print $2,$0}' 2>/dev/null)}" ) + _links=( "${(foa)$(networkctl list --no-legend | awk 'BEGIN{OFS=":"} {sub(/[[ \t]+/, ""); print $2,$0}' 2>/dev/null)}" ) if [[ -n "$_links" ]]; then _describe -t links 'links' _links else |