mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-22 12:11:16 -03:00
completions/ezjail-admin: Stringify
Specifically `grep`, these awks are still a bit too annoying to do with `string`.
This commit is contained in:
@@ -3,11 +3,11 @@ function __fish_complete_jails
|
||||
end
|
||||
|
||||
function __fish_complete_running_jails
|
||||
ezjail-admin list | tail +3 | grep '^.R' | awk '{ print $4 }'
|
||||
ezjail-admin list | tail +3 | string match -r '^.R' | awk '{ print $4 }'
|
||||
end
|
||||
|
||||
function __fish_complete_stopped_jails
|
||||
ezjail-admin list | tail +3 | grep '^.S' | awk '{ print $4 }'
|
||||
ezjail-admin list | tail +3 | string match -r '^.S' | awk '{ print $4 }'
|
||||
end
|
||||
|
||||
# archive
|
||||
|
||||
Reference in New Issue
Block a user