From 2431ca22bcb5105c469d1c78984d9ba4c59a247c Mon Sep 17 00:00:00 2001 From: Lucas Werkmeister Date: Sun, 30 Sep 2018 22:27:27 +0200 Subject: bash-completion: analyze: complete system call sets --- shell-completion/bash/systemd-analyze | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'shell-completion') diff --git a/shell-completion/bash/systemd-analyze b/shell-completion/bash/systemd-analyze index 4bc146aa06..c650940bcf 100644 --- a/shell-completion/bash/systemd-analyze +++ b/shell-completion/bash/systemd-analyze @@ -30,6 +30,15 @@ __get_machines() { machinectl list --no-legend --no-pager | { while read a b; do echo " $a"; done; }; } +__get_syscall_sets() { + local line + systemd-analyze syscall-filter --no-pager | while IFS= read -r line; do + if [[ $line == @* ]]; then + printf '%s\n' "$line" + fi + done +} + _systemd_analyze() { local i verb comps local cur=${COMP_WORDS[COMP_CWORD]} prev=${COMP_WORDS[COMP_CWORD-1]} @@ -121,6 +130,8 @@ _systemd_analyze() { elif __contains_word "$verb" ${VERBS[SECCOMP_FILTER]}; then if [[ $cur = -* ]]; then comps='--help --version --no-pager' + else + comps=$( __get_syscall_sets ) fi elif __contains_word "$verb" ${VERBS[VERIFY]}; then -- cgit v1.2.1