From f7f5b7f4ee17027438135249b1f8b035742206c0 Mon Sep 17 00:00:00 2001 From: dana Date: Tue, 1 Jan 2019 08:01:14 -0600 Subject: 43960: Add full completion for exec and setsid --- Completion/Linux/Command/_setsid | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Completion/Linux/Command/_setsid (limited to 'Completion/Linux') diff --git a/Completion/Linux/Command/_setsid b/Completion/Linux/Command/_setsid new file mode 100644 index 000000000..a8107e582 --- /dev/null +++ b/Completion/Linux/Command/_setsid @@ -0,0 +1,12 @@ +#compdef setsid + +[[ $service == setsid ]] && precommands+=( setsid ) + +_arguments -s -S -A '-*' : \ + '(: * -)'{-h,--help}'[display help information]' \ + '(: * -)'{-V,--version}'[display version information]' \ + '(-c --ctty)'{-c,--ctty}'[set controlling terminal to current one]' \ + '(-f --fork)'{-f,--fork}'[always fork]' \ + '(-w --wait)'{-w,--wait}'[wait for program to exit, and use same return code]' \ + '1: :_path_commands' \ + '*:: : _normal' -- cgit 1.4.1