Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
[PATCH] _setsid
- X-seq: zsh-workers 39917
- From: Daniel Shahaf <d.s@xxxxxxxxxxxxxxxxxx>
- To: zsh-workers@xxxxxxx
- Subject: [PATCH] _setsid
- Date: Fri, 11 Nov 2016 10:14:29 +0000
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= daniel.shahaf.name; h=date:from:message-id:subject:to :x-me-sender:x-me-sender:x-sasl-enc:x-sasl-enc; s=mesmtp; bh=l34 PPovb/BMVVYCpylK6Foi+u9I=; b=2znky8i0rJq5x8kMlla0C3zGrC5HfpV2+qh OFsyhiBK6/6zfj7YUncdneHlASFNRKZUdsNcCxjGe0HT86rh6BMliLR3yOoZCb1E sS02rowbXVO/xjyWlFnPL2wlzpswWVhgQjRVBdt7HvxuB/tKKqLwC8pl+SQLIW+j yVtibvgc=
- Dkim-signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d= messagingengine.com; h=date:from:message-id:subject:to :x-me-sender:x-me-sender:x-sasl-enc:x-sasl-enc; s=smtpout; bh=l3 4PPovb/BMVVYCpylK6Foi+u9I=; b=hqTM/F1plR5ZdCT8uHCZBnvufztWEk9WI3 VqRqirBMviAPfzz19WUIa9rmZCBFfg7ljjZjrghzydb2SaRrDJ+5VKfWIwqmPd/l 0qoaSe3aSEp4EJTjFofVzUwiwyTuNG71YP013TdJdFR0CmmuB0XzgcBsMt1Fz/iT 0Iw1NK9U4=
- List-help: <mailto:zsh-workers-help@zsh.org>
- List-id: Zsh Workers List <zsh-workers.zsh.org>
- List-post: <mailto:zsh-workers@zsh.org>
- Mailing-list: contact zsh-workers-help@xxxxxxx; run by ezmlm
---
This is a linux tool:
% apropos setsid
setsid (1) - run a program in a new session
setsid (2) - creates a session and sets the process group ID
setsid (3posix) - create session and set process group ID
There's also a similar ssid(1) from suckless; I haven't added it.
Cheers,
Daniel
Completion/Zsh/Command/_precommand | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Completion/Zsh/Command/_precommand b/Completion/Zsh/Command/_precommand
index f848721..f57e668 100644
--- a/Completion/Zsh/Command/_precommand
+++ b/Completion/Zsh/Command/_precommand
@@ -1,4 +1,4 @@
-#compdef - nohup eval time rusage noglob nocorrect exec catchsegv aoss hilite eatmydata
+#compdef - nohup eval time rusage noglob nocorrect exec catchsegv aoss hilite eatmydata setsid
# precommands is made local in _main_complete
precommands+=($words[1])
Messages sorted by:
Reverse Date,
Date,
Thread,
Author