blob: 867ddc50135409f15e5005f0ab0e26870ce018fd (
plain)
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
26
27
|
#compdef procstat
_arguments -s -A "-*" -S \
'(1)-b[show binary information]' \
'(1)-c[show command line arguments]' \
'(1)-e[show environment variables]' \
'(1)-f[show file descriptor information]' \
'(1)-i[show signal pending and disposition]' \
'(1)-j[show signal pending and blocked information for process threads]' \
'(1)-k[show stacks of kernel threads]' \
'(1)-l[show resource limits]' \
"(1)-L[show LWP info for the process pertaining to it's signal driven exit]" \
'(1)-r[show resource usage]' \
'(1)-s[show security credential information]' \
'(1)-S[show cpuset information]' \
'(1)-t[show thread information]' \
'(1)-v[show virtual memory mappings]' \
'(1)-x[show ELF auxiliary vector]' \
'-h[suppress table headers]' \
'(2 *)-a[all processes]' \
'-w+[repeat information after specified interval]:delay (seconds)' \
'-C[print additional capability information for file descriptors]' \
'-H[statistics per-thread rather than per-process]' \
'-n[numeric form for signals]' \
'1::command:(advlock argument auxv basic binary cpuset credential environment fd file kstack pargs ptlwpinfo pwdx rlimit rlimitusage rusage sigfastblock signal thread tsignal vm)' \
'2::core file:_path_files -g "*core*(-.)"' \
'*:process id:_pids'
|