zsh-workers
 help / color / mirror / code / Atom feed
869f146e3d8ba75c4a0f8484b044fb0fc63ac940 blob 916 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 
#compdef schedtool

local curcontext="$curcontext" line state ret=1

_arguments -C \
  '(-p    -F -R -B -I -D -M)-N[for SCHED_NORMAL]' \
  '(   -N    -R -B -I -D -M)-F[for SCHED_FIFO]' \
  '(   -N -F    -B -I -D -M)-R[for SCHED_RR]' \
  '(-p -N -F -R    -I -D -M)-B[for SCHED_BATCH]' \
  '(   -N -F -R -B    -D -M)-I[for SCHED_ISO]' \
  '(-p -N -F -R -B -I    -M)-D[for SCHED_IDLEPRIO]' \
  '(   -N -F -R -B -I -D   )-M[for manual mode; raw number for POLICY]:raw policy number' \
  '(   -N       -B    -D   )-p[usually 1-99; only for FIFO, RR or ISO]:static priority' \
  '-a[cpu affinity]:mask or list' \
  '-n[set niceness to NICE_LEVEL]:priority' \
  '-e[start COMMAND with specified policy/priority]:program: _command_names -e:*::program arguments: _normal' \
  '-v[be verbose]' \
  '*:processes:->processes' && ret=0

if [[ -n "$state" ]]; then
  _alternative \
    'processes:: _pids' && ret=0
fi

return ret
debug log:

solving 869f146 ...
found 869f146 in https://git.vuxu.org/mirror/zsh/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).