PATH:
usr
/
share
/
bash-completion
/
completions
# SPDX-License-Identifier: GPL-2.0-or-later # # bash tab completion for the nvme command line utility # (unfortunately, bash won't let me add descriptions to cmds) # Kelly Kaoudis kelly.n.kaoudis at intel.com, Aug. 2015 nvme_list_opts () { local opts="" local compargs="" local vals="" local opt="" local val="" local nonopt_args=0 for (( i=0; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} != -* ]]; then let nonopt_args+=1 fi done if [ $nonopt_args -eq 2 ]; then opts="/dev/nvme* " fi opts+=" " vals+=" " if [[ $cur != -* ]] && [[ $cur != "" ]] && [[ $prev == "=" ]] && [[ ${words[$cword-2]} == --* ]]; then opt+="${words[$cword-2]}" val+="$cur" elif [[ $cur == "" ]] && [[ $prev != "=" ]] || [[ $cur == "=" ]] && [[ $prev == --* ]]; then opt+="$prev" elif [[ $cur != "=" ]] && [[ $prev != --* ]] && [[ $prev != "=" ]]; then opt+="$prev" val+="$cur" else opt+="$cur" fi # Listed here in the same order as in nvme-builtin.h case "$1" in "list") opts+=$NO_OPTS ;; "list-subsys") opts=+=" --output-format= -o --verbose -v" ;; "id-ctrl") opts+=" --raw-binary -b --human-readable -H \ --vendor-specific -V --output-format= -o" ;; "id-ns") opts+=" --namespace-id= -n --raw-binary -b \ --human-readable -H --vendor-specific -V \ --force -f --output-format= -o" ;; "id-ns-granularity") opts+=" --output-format= -o" ;; "id-ns-lba-format") opts+=" --lba-format-index= -i --uuid-index= -U \ --verbose -v --output-format= -o" ;; "list-ns") opts+=" --namespace-id= -n --al -a --csi= -y \ --outputformat= -o --timeout= -t" ;; "list-ctrl") opts+=" --namespace-id= -n --cntid= -c \ --output-format= -o" ;; "cmdset-ind-id-ns") opts+=" --namespace-id= -n --raw-binary -b \ --human-readable -H --output-format= -o" ;; "nvm-id-ctrl") opts+=" --output-format= -o" ;; "nvm-id-ns") opts+=" --namespace-id= -n --uuid-index= -U\ --verbose -v --output-format= -o" ;; "nvm-id-ns-lba-format") opts+=" --lba-format-index= -i --uuid-index= -U \ --verbose -v --output-format= -o" ;; "primary-ctrl-caps") opts+=" --output-format= -o --human-readable -H" ;; "list-secondary") opts+=" --cntid= -c --namespace-id= n --num-entries -e \ --output-format= -o" ;; "ns-descs") opts+=" --namespace-id= -n --output-format -o --raw-binary -b" ;; "id-nvmset") opts+=" --nvmeset-id= -i --output-format= -o" ;; "id-uuid") opts+=" --output-format= -o --raw-binary -b --human-readable -H" ;; "list-endgrp") opts+=" --endgrp-id= -i --output-format= -o" ;; "id-iocs") opts+=" --controller-id= -c" ;; "id-domain") opts+=" --domain-id= -c --output-format= -o" ;; "create-ns") opts+=" --nsze= -s --ncap= -c --flbas= -f \ --dps= -d --nmic= -m --anagrp-id= -a --nvmset-id= -i \ --block-size= -b --timeout= -t --csi= -y --lbstm= -l \ --nphndls= -n --nsze-si= -S --ncap-si= -C --azr -z --rar= -r \ --ror= -O --rnumzrwa= -u --phndls= -p --endg-id= -e" ;; "delete-ns") opts+=" -namespace-id= -n --timeout= -t" ;; "attach-ns") opts+=" --namespace-id= -n --controllers= -c" ;; "detach-ns") opts+=" --namespace-id= -n --controllers= -c" ;; "get-ns-id") opts+=$NO_OPTS ;; "get-log") opts+=" --log-id= -i --log-len= -l --namespace-id= -n \ --aen= -a --lpo= -O --lsp= -s --lsi= -S \ --rae -r --uuid-index= -U --csi= -y --ot -O \ --raw-binary -b" ;; "supported-log-pages") opts+=" --output-format= -o --human-readable -H" ;; "telemetry-log") opts+=" --output-file= -O --host-generate= -g \ --controller-init -c --data-area= -d" ;; "fw-log") opts+=" --raw-binary -b --output-format= -o" ;; "changed-ns-list-log") opts+=" --output-format= -o --raw-binary -b" ;; "smart-log") opts+=" --namespace-id= -n --raw-binary -b \ --output-format= -o --verbose -v" ;; "ana-log") opts+=" --output-format -o" ;; "fid-support-effects-log") opts+=" --output-format -o" ;; "error-log") opts+=" --raw-binary -b --log-entries= -e \ --output-format= -o" ;; "effects-log") opts+=" --output-format= -o --human-readable -H \ --raw-binary -b --timeout= -t" ;; "endurance-log") opts+=" --output-format= -o --group-id -g" ;; "predictable-lat-log") opts+=" --nvmset-id= -i --raw-binary -b \ --output-format= -o" ;; "pred-lat-event-agg-log") opts+=" --log-entries= -e --rae -r \ --raw-binary -b --output-format= -o" ;; "persistent-event-log") opts+=" --action= -a --log-len= -l \ --raw-binary -b --output-format= -o" ;; "endurance-event-agg-log") opts+=" --log-entries= -e --rae -r \ --raw-binary -b --output-format= -o" ;; "lba-status-log") opts+=" --rae -r --output-format= -o" ;; "resv-notif-log") opts+=" --output-format= -o" ;; "boot-part-log") opts+=" --lsp -s --output-file= -f \ --output-format= -o" ;; "media-unit-stat-log") opts+=" --dom-id= -d --output-format= -o \ --raw-binary -b" ;; "supported-cap-config-log") opts+=" --dom-id= -d --output-format= -o \ --raw-binary -b" ;; "get-feature") opts+=" --namespace-id= -n --feature-id= -f --sel= -s \ --data-len= -l --cdw11= --c -uuid-index= -U --raw-binary -b \ --human-readable -H --timeout= -t --changed -C" ;; "device-self-test") opts+=" --namespace-id= -n --self-test-code= -s --timeout= -t" ;; "self-test-log") opts+=" --dst-entries= -e --output-format= -o \ --verbose -v" ;; "set-feature") opts+=" --namespace-id= -n --feature-id= -f --value= -v \ --data-len= -l -data= -d --value= -v --save -s --uuid-index= -U \ --cdw12= -c --timeout= -t" ;; "set-property") opts+=" --offset= -O --value= -V --timeout= -t" ;; "get-property") opts=+" --offset= -O --human-readable -H --timeout= -t" ;; "format") opts+=" --namespace-id= -n --timeout= -t --lbaf= -l \ --ses= -s --pil= -p -pi= -i --ms= -m --reset -r" ;; "fw-commit") opts+=" --slot= -s --action= -a --bpid= -b --timeout= -t" ;; "fw-download") opts+=" --fw= -f --xfer= -x --offset= -O --timeout= -t" ;; "capacity-mgmt") opts+=" --operation= -O --element-id= -i --cap-lower= -l \ --cap-upper= -u --timeout= -t" ;; "lockdown") opts+=" --ofi= -O --ifc= -f --prhbt= -p --scp= -s --uuid -U \ --timeout= -t" ;; "admin-passthru") opts+=" --opcode= -O --flags= -f --prefil= -p --rsvd= -R \ --namespace-id= -n --data-len= -l --metadata-len= -m \ --timeout= -t --cdw2= -2 --cdw3= -3 --cdw10= -4 \ --cdw11= -5 --cdw12= -6 --cdw13= -7 --cdw14= -8 \ --cdw15= -9 --input-file= -i --raw-binary -b \ --show-command -s --dry-run -d --read -r --write -w \ --latency -T" ;; "io-passthru") opts+=" --opcode= -O --flags= -f --prefill= -p --rsvd= -R \ --namespace-id= -n --data-len= -l --metadata-len= -m \ --timeout= -t --cdw2= -2 --cdw3= -3 --cdw10= -4 \ --cdw11= -5 --cdw12= -6 --cdw13= -7 --cdw14= -8 \ --cdw15= -9 --input-file= -i --raw-binary -b \ --show-command -s --dry-run -d --read -r --write -w \ --latency -T" ;; "security-send") opts+=" --namespace-id= -n --file= -f --nssf= -N --secp= -p \ --spsp= -s --tl= -t --timeout=" ;; "security-recv") opts+=" --namespace-id= -n --size= -x --secp= -p --spsp= -s \ --al= -t --raw-binary -b --timeout=" ;; "get-lba-status") opts+=" --namespace-id= -n --start-lba= -s --max-dw= -m \ --action= -a --range-len= -l --timeout= -t \ --output-format= -o" ;; "resv-acquire") opts+=" --namespace-id= -n --crkey= -c --prkey= -p \ --rtype= -t --racqa= -a --iekey= -i --timeout=" ;; "resv-register") opts+=" --namespace-id= -n --crkey= -c --nrkey= -k \ --rrega= -r --cptpl= -p --iekey -i --timeout= -t" ;; "resv-release") opts+=" --namespace-id= -n --crkey -c --rtype= -t \ --rrela= -a --iekey -i --timeout=" ;; "resv-report") opts+=" --namespace-id= -n --numd= -d --eds -e \ --raw-binary= -b --output-format= -o --timeout= -t" ;; "dsm") opts+=" --namespace-id= -n --ctx-attrs= -a --blocks= -b \ --slbs= -s --ad -d --idw -w --idr -r --cdw11= -c \ --timeout= -t" ;; "copy") opts+=" --namespace-id= -n --sdlba= -d --blocks= -b --slbs= -s \ --limited-retry -l --force-unit-access -f \ --prinfow= -p --prinfor= -P \ --ref-tag= -r --expected-ref-tag= -R \ --app-tag= -a --expected-app-tag= -A \ --app-tag-mask= -m --expected-app-tag-mask= -M \ --dir-type= -T --dir-spec= -S --format= -F --timeout= -t" ;; "flush") opts+=" --namespace-id= -n" ;; "compare") opts+=" --start-block= -s --block-count= -c --data-size= -z \ --metadata-size= -y --ref-tag= -r --data= -d \ --metadata= -M --prinfo= -p --app-tag-mask= -m \ --app-tag= -a --limited-retry -l \ --force-unit-access -f --storage-tag-check -C \ --dir-type= -T --dir-spec= -S --dsm= -D --show-command -V \ --dry-run -w --latency -t --timeout=" ;; "read") opts+=" --start-block= -s --block-count= -c --data-size= -z \ --metadata-size= -y --ref-tag= -r --data= -d \ --metadata= -M --prinfo= -p --app-tag-mask= -m \ --app-tag= -a --limited-retry -l \ --force-unit-access -f --storage-tag-check -C \ --dir-type= -T --dir-spec= -S --dsm= -D --show-command -V \ --dry-run -w --latency -t --timeout=" ;; "write") opts+=" --start-block= -s --block-count= -c --data-size= -z \ --metadata-size= -y --ref-tag= -r --data= -d \ --metadata= -M --prinfo= -p --app-tag-mask= -m \ --app-tag= -a --limited-retry -l \ --force-unit-access -f --storage-tag-check -C \ --dir-type= -T --dir-spec= -S --dsm= -D --show-command -V \ --dry-run -w --latency -t --timeout=" ;; "write-zeroes") opts+=" --namespace-id= -n --start-block= -s \ --block-count= -c --deac -d --limited-retry -l \ --force-unit-access -f --prinfo= -p --ref-tag= -r \ --app-tag-mask= -m --app-tag= -a \ --storage-tag= -S --storage-tag-check -C \ --dir-type= -T --dir-spec= -S --namespace-zeroes -Z \ --timeout= -t" ;; "write-uncor") opts+=" --namespace-id= -n --start-block= -s \ --block-count= -c --dir-type= -T --dir-spec= -S \ --timeout= -t" ;; "verify") opts+=" --namespace-id= -n --start-block= -s \ --block-count= -c --limited-retry -l \ --force-unit-access -f --prinfo= -p --ref-tag= -r \ --app-tag= -a --app-tag-mask= -m \ --storage-tag= -S --storage-tag-check -C --timeout= -t" ;; "sanitize") opts+=" --no-dealloc -d --oipbp -i --owpass= -n \ --ause -u --sanact= -a --ovrpat= -p --emvs= -e" case $opt in --sanact|-a) vals+=" exit-failure start-block-erase start-overwrite \ start-crypto-erase exit-media-verification" ;; esac ;; "sanitize-log") opts+=" --rae -r --output-format= -o --human-readable -H \ --raw-binary -b" ;; "reset") opts+=$NO_OPTS ;; "subsystem-reset") opts+=$NO_OPTS ;; "ns-rescan") opts+=$NO_OPTS ;; "show-regs") opts+=" --output-format= -o --human-readable -H --timeout= -t" ;; "discover") opts+=" --transport= -t -traddr= -a -trsvcid= -s \ --host-traddr= -w --host-iface= -f \ --hostnqn= -q --hostid -I --raw= -r \ --raw= -r --device= -d --keep-alive-tmo= -k \ --ctrl-loss-tmo= -l --fast-io-fail-tmo= -f \ --tos= -T --hdr-digest= -g --data-digest -G \ --nr-io-queues= -i --nr-write-queues= -W \ --nr-poll-queues= -P --queue-size= -Q \ --persistent -p --quiet \ --output-format= -o" ;; "connect-all") opts+=" --transport= -t -traddr= -a -trsvcid= -s \ --host-traddr= -w --host-iface= -f \ --hostnqn= -q --hostid -I --raw= -r \ --raw= -r --device= -d --keep-alive-tmo= -k \ --ctrl-loss-tmo= -l --fast-io-fail-tmo= -f \ --tos= -T --hdr-digest= -g --data-digest -G \ --nr-io-queues= -i --nr-write-queues= -W \ --nr-poll-queues= -P --queue-size= -Q \ --persistent -p --quiet \ --output-format= -o" ;; "connect") opts+=" --transport= -t --nqn= -n --traddr= -a --trsvcid -s \ --hostnqn= -q --host-id= -I --nr-io-queues= -i \ --nr-poll-queues= -P --queue-size= -Q \ --keep-alive-tmo= -k --reconnect-delay= -r \ --ctrl-loss-tmo= -l --fast-io-fail-tmo= -f \ --tos= -T --duplicate-connect -D --disable-sqflow \ --hdr-digest -g --data-digest -G --output-format= -o" ;; "dim") opts+=" --task -t --nqn -n --device -d" ;; "disconnect") opts+=" --nqn -n --device -d" ;; "disconnect-all") opts+=$NO_OPTS ;; "gen-hostnqn") opts+=$NO_OPTS ;; "show-hostnqn") opts+=$NO_OPTS ;; "tls-key") opts+=" --output-format= -o --verbose -v --keyring= -k \ --keytype= -k --keyfile= -f --import -i \ --export -e --revoke= -r" ;; "dir-receive") opts+=" --namespace-id= -n --data-len= -l --raw-binary -b \ --dir-type= -D --dir-spec= -S --dir-oper= -O \ --req-resource= -r --human-readable -H --timeout= -t" ;; "dir-send") opts+=" --namespace-id= -n --data-len= -l --dir-type= -D \ --target-dir= -T --dir-spec= -S --dir-oper= -O \ --endir= -e --human-readable -H --raw-binary -b \ --timeout= -t" ;; "virt-mgmt") opts+=" --cntlid= -c --rt= -r --act= -a --nr= -n --timeout= -t" ;; "rpmb") opts+=" --cmd= -c --msgfile= -f --keyfile= -g \ --key= -k --msg= -d --address= -o --blocks= -b \ --target= -t" ;; "show-topology") opts+=" --output-format= -o --verbose -v --ranking= -r" ;; "nvme-mi-recv") opts+=" --opcode= -O --namespace-id= -n --data-len= -l \ --nmimt= -m --nmd0= -0 --nmd1= -1 --input-file= -i" ;; "nvme-mi-send") opts+=" --opcode= -O --namespace-id= -n --data-len= -l \ --nmimt= -m --nmd0= -0 --nmd1= -1 --input-file= -i" ;; "get-reg") opts+=" --offset= -O --human-readable -H --cap --vs --cmbloc \ --cmbsz --bpinfo --cmbsts --cmbebs --cmbswtp --crto \ --pmrcap --pmrsts --pmrebs --pmrswtp --intms --intmc \ --cc --csts --nssr --aqa --asq --acq --bprsel --bpmbl \ --cmbmsc --nssd --pmrctl --pmrmscl --pmrmscu \ --output-format -o --verbose -v --timeout= -t" ;; "set-reg") opts+=" --offset= -O --value= -V --mmio32 -m --intms= --intmc= \ --cc= --csts= --nssr= --aqa= --asq= --acq= --bprsel= \ --bpmbl= --cmbmsc= --nssd= --pmrctl= --pmrmscl= \ --pmrmscu= --output-format= -o --verbose -v \ --timeout= -t" ;; "io-mgmt-recv") opts+=" --namespace-id= -n --mos= -s --mo= -m --data= -d \ --data-len= -l --output-format= -o --verbose -v \ --timeout= -t" ;; "io-mgmt-send") opts+=" --namespace-id= -n --mos= -s --mo= -m --data= -d \ --data-len= -l --output-format= -o --verbose -v \ --timeout= -t" ;; "mgmt-addr-list-log") opts+=" --verbose -v --output-format= -o --timeout= -t" ;; "rotational-media-info-log") opts+=" --endg-id= -e --verbose -v --output-format= -o \ --timeout= -t" ;; "changed-alloc-cns-list-log") opts+=" --output-format= -o --raw-binary -b --verbose -v \ --timeout= -t" ;; "dispersed-ns-participating-nss-log") opts+=" --namespace-id= -n --verbose -v --output-format= -o \ --timeout= -t" ;; "reachability-groups-log") opts+=" --groups-only -g --rae -r --verbose -v \ --output-format= -o --timeout= -t" ;; "reachability-associations-log") opts+=" --associations-only -a --rae -r --verbose -v \ --output-format= -o --timeout= -t" ;; "host-discovery-log") opts+=" --all-host-entries -a --rae -r --verbose -v \ --output-format= -o --timeout= -t" ;; "ave-discovery-log") opts+=" --rae -r --verbose -v --output-format= -o \ --timeout= -t" ;; "pull--ddc-req-log") opts+=" --rae -r --verbose -v --output-format= -o \ --timeout= -t" ;; "version") opts+=$NO_OPTS ;; "help") opts=$_cmds ;; esac opts+=" -h --help -j --json" if [[ $vals == " " ]]; then COMPREPLY+=( $( compgen $compargs -W "$opts" -- $cur ) ) else COMPREPLY+=( $( compgen $compargs -W "$vals" -- $val ) ) fi return 0 } plugin_intel_opts () { local opts="" local compargs="" local nonopt_args=0 for (( i=0; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} != -* ]]; then let nonopt_args+=1 fi done if [ $nonopt_args -eq 3 ]; then opts="/dev/nvme* " fi opts+=" " case "$1" in "id-ctrl") opts+=" --raw-binary -b --human-readable -H \ --vendor-specific -v --output-format= -o" ;; "internal-log") opts+=" --log= -l --region= -r --nlognum= -m \ --namespace-id= -n --output-file= -o \ --verbose-nlog -v" ;; "lat-stats") opts+=" --write -w --raw-binary -b --json -j" ;; "set-bucket-thresholds") opts+=" --write -w --bucket-thresholds= -t" ;; "lat-stats-tracking") opts+=" --enable -e --disable -d" ;; "market-name") opts+=" --raw-binary -b" ;; "smart-log-add") opts+=" --namespace-id= -n --raw-binary -b \ --json -j" ;; "temp-stats") opts+=" --raw-binary -b" ;; "help") opts+=$NO_OPTS ;; esac COMPREPLY+=( $( compgen $compargs -W "$opts" -- $cur ) ) return 0 } plugin_amzn_opts () { local opts="" local compargs="" local nonopt_args=0 for (( i=0; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} != -* ]]; then let nonopt_args+=1 fi done if [ $nonopt_args -eq 3 ]; then opts="/dev/nvme* " fi opts+=" " case "$1" in "id-ctrl") opts+=" --raw-binary -b --human-readable -H \ --vendor-specific -v --output-format= -o" ;; "help") opts+=$NO_OPTS ;; esac COMPREPLY+=( $( compgen $compargs -W "$opts" -- $cur ) ) return 0 } plugin_memblaze_opts () { local opts="" local compargs="" local nonopt_args=0 for (( i=0; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} != -* ]]; then let nonopt_args+=1 fi done if [ $nonopt_args -eq 3 ]; then opts="/dev/nvme* " fi opts+=" " case "$1" in "smart-log-add") opts+=" --namespace-id= -n --raw-binary -b" ;; "get-pm-status") opts+=$NO_OPTS ;; "set-pm-status") opts+=" --value= -v --save -s" ;; "select-download") opts+=" --fw= -f --select= -s" ;; "lat-stats") opts+=" --enable -e --disable -d" ;; "lat-stats-print") opts+=" --write -w" ;; "lat-log") opts+=" --param= -p" ;; "lat-log-print") opts+=$NO_OPTS ;; "clear-error-log") opts+=$NO_OPTS ;; "help") opts+=$NO_OPTS ;; esac COMPREPLY+=( $( compgen $compargs -W "$opts" -- $cur ) ) return 0 } plugin_wdc_opts () { local opts="" local compargs="" local nonopt_args=0 for (( i=0; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} != -* ]]; then let nonopt_args+=1 fi done if [ $nonopt_args -eq 3 ]; then opts="/dev/nvme* " fi opts+=" " case "$1" in "cap-diag") opts+=" --output-file= -o --transfer-size= -s" ;; "drive-log") opts+=" --output-file= -o" ;; "get-crash-dump") opts+=" --output-file= -o" ;; "get-pfail-dump") opts+=" --output-file= -o" ;; "id-ctrl") opts+=" --raw-binary -b --human-readable -H \ --vendor-specific -v --output-format= -o" ;; "purge") opts+=$NO_OPTS ;; "purge-monitor") opts+=$NO_OPTS ;; "vs-internal-log") opts+=" --output-file= -o --transfer-size= -s --data-area= -d \ --file-size= -f --offset= -e --type= -t --verbose -v" ;; "vs-nand-stats") opts+=" --output-format= -o" ;; "vs-smart-add-log") opts+=" --interval= -i --output-format= -o --log-page-version= -l \ --log-page-mask= -p" ;; "clear-pcie-correctable-errors") opts+=$NO_OPTS ;; "drive-essentials") opts+=" --dir-name= -d" ;; "get-drive-status") opts+=$NO_OPTS ;; "clear-assert-dump") opts+=$NO_OPTS ;; "drive-resize") opts+=" --size= -s" ;; "vs-fw-activate-history") opts+=" --output-format= -o" ;; "clear-fw-activate-history") opts+=$NO_OPTS ;; "enc-get-log") opts+=" --output-file= -o --transfer-size= -s --log-id= -l" ;; "vs-telemetry-controller-option") opts+=" --disable -d --enable -e --status -s" ;; "vs-error-reason-identifier") opts+=" --log-id= -i --file= -o" ;; "log-page-directory") opts+=" --output-format= -o" ;; "namespace-resize") opts+=" --namespace-id= -n --op-option= -o" ;; "vs-drive-info") opts+=" --output-format= -o" ;; "vs-temperature-stats") opts+=" --output-format= -o" ;; "capabilities") opts+=$NO_OPTS ;; "cloud-SSD-plugin-version") opts+=$NO_OPTS ;; "vs-pcie-stats") opts+=" --output-format= -o" ;; "help") opts+=$NO_OPTS ;; esac COMPREPLY+=( $( compgen $compargs -W "$opts" -- $cur ) ) return 0 } plugin_huawei_opts () { local opts="" local compargs="" local nonopt_args=0 for (( i=0; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} != -* ]]; then let nonopt_args+=1 fi done if [ $nonopt_args -eq 3 ]; then opts="/dev/nvme* " fi opts+=" " case "$1" in "list") opts+=" --output-format= -o" ;; "id-ctrl") opts+=" --raw-binary -b --human-readable -H \ --vendor-specific -v --output-format= -o" ;; "help") opts+=$NO_OPTS ;; esac COMPREPLY+=( $( compgen $compargs -W "$opts" -- $cur ) ) return 0 } plugin_toshiba_opts () { local opts="" local compargs="" local nonopt_args=0 for (( i=0; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} != -* ]]; then let nonopt_args+=1 fi done if [ $nonopt_args -eq 3 ]; then opts="/dev/nvme* " fi opts+=" " case "$1" in "vs-smart-add-log") opts+=" --namespace-id= -n --output-file= -o --log= -l" ;; "vs-internal-log") opts+=" --output-file= -o --prev-log -p" ;; "clear-pcie-correctable-errors") opts+=$NO_OPTS ;; "help") opts+=$NO_OPTS ;; esac COMPREPLY+=( $( compgen $compargs -W "$opts" -- $cur ) ) return 0 } plugin_micron_opts () { local opts="" local compargs="" local nonopt_args=0 for (( i=0; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} != -* ]]; then let nonopt_args+=1 fi done if [ $nonopt_args -eq 3 ]; then opts="/dev/nvme* " fi opts+=" " case "$1" in "select-download") opts+=" --fw= -f --select= -s" ;; "vs-temperature-stats") opts+=" --format= -f" ;; "vs-pcie-stats") opts+=" --format= -f" ;; "clear-pcie-correctable-errors") opts+=$NO_OPTS ;; "vs-internal-log") opts+=" --type= -t --package= -p --data_area= -d" ;; "vs-telemetry-controller-option") opts+=" --option= -o --select= -s" ;; "vs-nand-stats") opts+=" --format= -f" ;; "vs-drive-info") opts+=" --format= -f" ;; "plugin-version") opts+=$NO_OPTS ;; "cloud-SSD-plugin-version") opts+=$NO_OPTS ;; "log-page-directory") opts+=$NO_OPTS ;; "vs-fw-activate-history") opts+=" --format= -f" ;; "vs-error-reason-identifier") opts+=" --format= -f" ;; "vs-smart-add-log") opts+=" --format= -f" ;; "clear-fw-activate-history") opts+=$NO_OPTS ;; "vs-smbus-option") opts+=" --option= -o --value= -v --save= -s" ;; "help") opts+=$NO_OPTS ;; esac COMPREPLY+=( $( compgen $compargs -W "$opts" -- $cur ) ) return 0 } plugin_seagate_opts () { local opts="" local compargs="" local nonopt_args=0 for (( i=0; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} != -* ]]; then let nonopt_args+=1 fi done if [ $nonopt_args -eq 3 ]; then opts="/dev/nvme* " fi opts+=" " case "$1" in "vs-temperature-stats") opts+=" --output-format= -o" ;; "vs-log-page-sup") opts+=" --output-format= -o" ;; "vs-smart-add-log") opts+=" --output-format= -o" ;; "vs-pcie-stats") opts+=" --output-format= -o" ;; "clear-pcie-correctable-errors") opts+=" --save -s" ;; "get-host-tele") opts+=" --namespace-id= -n --log-specific= -i --raw-binary -b" ;; "get-ctrl-tele") opts+=" --namespace-id= -n --raw-binary -b" ;; "vs-internal-log") opts+=" --namespace-id= -n --dump-file= -f" ;; "plugin-version") opts+=$NO_OPTS ;; "help") opts+="" ;; esac COMPREPLY+=( $( compgen $compargs -W "$opts" -- $cur ) ) return 0 } plugin_virtium_opts () { local opts="" local compargs="" local nonopt_args=0 for (( i=0; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} != -* ]]; then let nonopt_args+=1 fi done if [ $nonopt_args -eq 3 ]; then opts="/dev/nvme* " fi opts+=" " case "$1" in "save-smart-to-vtview-log") opts+=" --run-time= -r --freq= -f --output-file= -o --test-name= -n" ;; "show-identify") opts+=$NO_OPTS ;; "help") opts+=$NO_OPTS ;; esac COMPREPLY+=( $( compgen $compargs -W "$opts" -- $cur ) ) return 0 } plugin_shannon_opts () { local opts="" local compargs="" local nonopt_args=0 for (( i=0; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} != -* ]]; then let nonopt_args+=1 fi done if [ $nonopt_args -eq 3 ]; then opts="/dev/nvme* " fi opts+=" " case "$1" in "smart-log-add") opts+=" --namespace-id= -n --raw-binary -b" ;; "get-feature-add") opts+=" --namespace-id= -n --feature-id -f --sel= -s \ --data-len= -l --raw-binary -b --cdw11= -c --human-readable -H" ;; "set-feature-add") opts+=" --namespace-id= -n --feature-id= -f --value= -V \ --data-len= -l --data= -d --save -s" ;; "id-ctrl") opts+=" --raw-binary -b --human-readable -H \ --vendor-specific -v --output-format= -o" ;; "help") opts+=$NO_OPTS ;; esac COMPREPLY+=( $( compgen $compargs -W "$opts" -- $cur ) ) return 0 } plugin_dera_opts () { local opts="" local compargs="" local nonopt_args=0 for (( i=0; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} != -* ]]; then let nonopt_args+=1 fi done if [ $nonopt_args -eq 3 ]; then opts="/dev/nvme* " fi opts+=" " case "$1" in "smart-log-add") opts+=$NO_OPTS ;; "help") opts+=$NO_OPTS ;; esac COMPREPLY+=( $( compgen $compargs -W "$opts" -- $cur ) ) return 0 } plugin_sfx_opts () { local opts="" local compargs="" local nonopt_args=0 for (( i=0; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} != -* ]]; then let nonopt_args+=1 fi done if [ $nonopt_args -eq 3 ]; then opts="/dev/nvme* " fi opts+=" " case "$1" in "smart-log-add") opts+=" --namespace-id= -n --raw-binary -b --json -j" ;; "lat-stats") opts+=" --write -w --raw-binary -b" ;; "get-bad-block") opts+=$NO_OPTS ;; "query-cap") opts+=" --raw-binary --json" ;; "change-cap") opts+=" --cap= -c --cap-byte= -z --force -f --raw-binary -b --json -j" ;; "set-feature") opts+=" --namespace-id= -n --feature-id= -f --value= -v --force -s" ;; "get-feature") opts+=" --namespace-id= -n --feature-id -f" ;; "help") opts+=$NO_OPTS ;; esac COMPREPLY+=( $( compgen $compargs -W "$opts" -- $cur ) ) return 0 } plugin_solidigm_opts () { local opts="" local compargs="" local nonopt_args=0 for (( i=0; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} != -* ]]; then let nonopt_args+=1 fi done if [ $nonopt_args -eq 3 ]; then opts="/dev/nvme* " fi opts+=" " case "$1" in "id-ctrl") opts+=" --raw-binary -b --human-readable -H \ --vendor-specific -v --output-format= -o \ --verbose -v " ;; "vs-smart-add-log") opts+="--output-format= -o" ;; "garbage-collect-log") opts+="--output-format= -o" ;; "vs-internal-log") opts+=" --type= -t --namespace-id= -n \ --file-prefix= -p --verbose -v" ;; "latency-tracking-log") opts+=" --enable -e --disable -d \ --read -r --write -w \ --type -t --output-format -o" ;; "clear-pcie-correctable-errors") opts+=" --no-uuid -n" ;; "parse-telemetry-log") opts+=" --host-generate -g --controller-init -c \ --data-area -d --config-file -j \ --source-file -s" ;; "clear-fw-activate-history") opts+=" --no-uuid -n" ;; "vs-fw-activate-history") opts+=" --output-format -o" ;; "log-page-directory") opts+=" --output-format -o" ;; "vs-drive-info") opts+=" " ;; "cloud-SSDplugin-version") opts+=$NO_OPTS ;; "market-log") opts+=" --raw-binary -b" ;; "smart-log-add") opts+=" --namespace-id= -n --output-format -o" ;; "temp-stats") opts+=" --raw-binary -b" ;; "workload-tracker") opts+=" --enable -e --disable -d --sample-time= -s \ --type= -t --run-time= -r --flush-freq= -f \ --wall-clock -w --trigger-field= -T \ --trigger-threshold= -V --trigger-on-delta -D \ --trigger-on-latency -L --verbose -v" ;; "version") opts+=$NO_OPTS ;; "help") opts+=$NO_OPTS ;; esac COMPREPLY+=( $( compgen $compargs -W "$opts" -- $cur ) ) return 0 } plugin_fdp_opts () { local opts="" local compargs="" local nonopt_args=0 for (( i=0; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} != -* ]]; then let nonopt_args+=1 fi done if [ $nonopt_args -eq 3 ]; then opts="/dev/nvme* " fi opts+=" " case "$1" in "feature") opts+=" --endgrp-id= -e --enable-conf-idx= -c \ --disable -d --verbose -v" ;; "version") opts+=$NO_OPTS ;; "help") opts+=$NO_OPTS ;; esac COMPREPLY+=( $( compgen $compargs -W "$opts" -- $cur ) ) return 0 } plugin_transcend_opts () { local opts="" local compargs="" local nonopt_args=0 for (( i=0; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} != -* ]]; then let nonopt_args+=1 fi done if [ $nonopt_args -eq 3 ]; then opts="/dev/nvme* " fi opts+=" " case "$1" in "healthvalue") opts+=$NO_OPTS ;; "badblock") opts+=$NO_OPTS ;; "help") opts+=$NO_OPTS ;; esac COMPREPLY+=( $( compgen $compargs -W "$opts" -- $cur ) ) return 0 } plugin_dapustor_opts () { local opts="" local compargs="" local nonopt_args=0 for (( i=0; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} != -* ]]; then let nonopt_args+=1 fi done if [ $nonopt_args -eq 3 ]; then opts="/dev/nvme* " fi opts+=" " case "$1" in "smart-log-add") opts+=" --namespace-id= -n --raw-binary -b \ --json -j" ;; "help") opts+=$NO_OPTS ;; esac COMPREPLY+=( $( compgen $compargs -W "$opts" -- $cur ) ) return 0 } plugin_zns_opts () { local opts="" local compargs="" local nonopt_args=0 for (( i=0; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} != -* ]]; then let nonopt_args+=1 fi done if [ $nonopt_args -eq 3 ]; then opts="/dev/nvme* " fi opts+=" " case "$1" in "id-ctrl") opts+=" --raw-binary -b --human-readable -H \ --vendor-specific -v --output-format= -o" ;; "id-ns") opts+=" --namespace-id= -n --vendor-specific -v \ --output-format= -o --human-readable -H" ;; "zone-mgmt-recv") opts+=" --output-format= -o --namespace-id= -n \ --start-lba= -s --zra= -z --zrasf= -S --partial -p \ --data-len= -l" ;; "zone-mgmt-send") opts+=" --namespace-id= -n --start-lba= -s --zsaso -o \ --select-all -a --zsa= -z --data-len= -l \ --data= -d --timeout= -t" ;; "report-zones") opts+=" --namespace-id= -n --start-lba= -s \ --descs= -d --state= -S --output-format= -o \ --human-readable -H --extended -e --partial -p" ;; "close-zone") opts+=" --namespace-id= -n --start-lba= -s \ --select-all -a --timeout= -t" ;; "finish-zone") opts+=" --namespace-id= -n --start-lba= -s \ --select-all -a --timeout= -t" ;; "open-zone") opts+=" --namespace-id= -n --start-lba= -s \ --select-all -a --timeout= -t --zrwa -r" ;; "reset-zone") opts+=" --namespace-id= -n --start-lba= -s \ --select-all -a --timeout= -t" ;; "offline-zone") opts+=" --namespace-id= -n --start-lba= -s \ --select-all -a --timeout= -t" ;; "set-zone-desc") opts+=" --namespace-id= -n --start-lba= -s \ --data= -d --timeout= -t --zrwa -r" ;; "flush-zone") opts+=" --namespace-id= -n --last-lba= -l --timeout= -t" ;; "zone-append") opts+=" --namespace-id= -n --zslba= -s --data-size= -z \ --metadata-size= -y --data= -d --metadata= -M \ --limited-retry -l --force-unit-access -f --ref-tag= -r --app-tag-mask= -m --app-tag= -a --prinfo= -p \ --piremap -P --latency -t" ;; "changed-zone-list") opts+=" --namespace-id= -n --output-format= -o --rae -r" ;; "help") opts+=$NO_OPTS ;; esac COMPREPLY+=( $( compgen $compargs -W "$opts" -- $cur ) ) return 0 } plugin_nvidia_opts () { local opts="" local compargs="" local nonopt_args=0 for (( i=0; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} != -* ]]; then let nonopt_args+=1 fi done if [ $nonopt_args -eq 3 ]; then opts="/dev/nvme* " fi opts+=" " case "$1" in "id-ctrl") opts+=" --raw-binary -b --human-readable -H \ --vendor-specific -v --output-format= -o" ;; "help") opts+=$NO_OPTS ;; esac COMPREPLY+=( $( compgen $compargs -W "$opts" -- $cur ) ) return 0 } plugin_ymtc_opts () { local opts="" local compargs="" local nonopt_args=0 for (( i=0; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} != -* ]]; then let nonopt_args+=1 fi done if [ $nonopt_args -eq 3 ]; then opts="/dev/nvme* " fi opts+=" " case "$1" in "smart-log-add") opts+=" --namespace-id= -n --raw-binary -b" ;; "help") opts+=$NO_OPTS ;; esac COMPREPLY+=( $( compgen $compargs -W "$opts" -- $cur ) ) return 0 } plugin_inspur_opts () { local opts="" local compargs="" local nonopt_args=0 for (( i=0; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} != -* ]]; then let nonopt_args+=1 fi done if [ $nonopt_args -eq 3 ]; then opts="/dev/nvme* " fi opts+=" " case "$1" in "nvme-vendor-log") opts+=$NO_OPTS ;; "help") opts+=$NO_OPTS ;; esac COMPREPLY+=( $( compgen $compargs -W "$opts" -- $cur ) ) return 0 } plugin_ocp_opts () { local opts="" local compargs="" local nonopt_args=0 for (( i=0; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} != -* ]]; then let nonopt_args+=1 fi done if [ $nonopt_args -eq 3 ]; then opts="/dev/nvme* " fi opts+=" " case "$1" in "smart-add-log") opts+=" --output-format= -o" ;; "latency-monitor-log") opts+=" --output-format= -o" ;; "set-latency-monitor-feature") opts+=" --active_bucket_timer_threshold= -t \ --active_threshold_a= -a --active_threshold_b= -b \ --active_threshold_c= -c --active_threshold_d= -d \ --active_latency_config= -f \ --active_latency_minimum_window= -w \ --debug_log_trigger_enable -r --discard_debug_log= -l \ --latency_monitor_feature_enable= -e" ;; "internal-log") opts+=" --telemetry-log= -l --string-log= -s \ --output-file= -o --output-format= -f \ --data-area= -a --telemetry-type= -t" ;; "clear-fw-activate-history") opts+=" --no-uuid -n" ;; "eol-plp-failure-mode") opts+=" --mode= -m --save -s --sel= -S --no-uuid -n" ;; "clear-pcie-correctable-error-counters") opts+=" --no-uuid -n" ;; "fw-activate-history") opts+=" --output-format= -o" ;; "device-capability-log") opts+=" --output-format= -o" ;; "set-dssd-power-state-feature") opts+=" --power-state= -p --no-uuid -n --save -s" ;; "get-dssd-power-state-feature") opts+=" --sel= -S --all -a --no-uuid -n" ;; "telemetry-string-log") opts+=" --output-file= -o" ;; "set-telemetry-profile") opts+=" --telemetry-profile-select= -t" ;; "set-dssd-async-event-config") opts+=" --enable-panic-notices -e --save -s" ;; "get-dssd-async-event-config") opts+=" --sel= -S" ;; "tcg-configuration-log") opts+=" --output-file= -o" ;; "get-error-injection") opts+=" --sel= -s --no-uuid -n" ;; "set-error-injection") opts+=" --data= -d --number= -n --no-uuid -N --type= -t \ --nrtdp= -r --verbose -v --output-format -o --timeout=" ;; "hardware-component-log") opts+=" --comp-id= -i --list -l --verbose -v \ --output-format -o --timeout= -t" ;; "help") opts+=$NO_OPTS ;; esac COMPREPLY+=( $( compgen $compargs -W "$opts" -- $cur ) ) return 0 } _nvme_subcmds () { local cur prev words cword _init_completion || return # Constant to indicate command has no options NO_OPTS="" # Associative array of plugins and associated subcommands # Order here is same as PLUGIN_OBJS in Makefile typeset -Ar _plugin_subcmds=( [intel]="id-ctrl internal-log lat-stats \ set-bucket-thresholds lat-stats-tracking \ market-name smart-log-add temp-stats" [amzn]="id-ctrl" [memblaze]="smart-log-add get-pm-status set-pm-status \ select-download lat-stats lat-stats-print lat-log \ lat-log-print clear-error-log" [wdc]="cap-diag drive-log get-crash-dump get-pfail-dump \ id-ctrl purge purge-monitor vs-internal-log \ vs-nand-stats vs-smart-add-log clear-pcie-correctable-errors \ drive-essentials get-drive-status clear-assert-dump \ drive-resize vs-fw-activate-history clear-fw-activate-history \ enc-get-log vs-telemetry-controller-option \ vs-error-reason-identifier log-page-directory \ namespace-resize vs-drive-info vs-temperature-stats \ capabilities cloud-SSD-plugin-version vs-pcie-stats" [huawei]="list id-ctrl" [netapp]="smdevices ontapdevices" [toshiba]="vs-smart-add-log vs-internal-log \ clear-pcie-correctable-errors" [micron]="select-download vs-temperature-stats vs-pcie-stats \ clear-pcie-correctable-errors vs-internal-log \ vs-telemetry-controller-option vs-nand-stats \ vs-drive-info plugin-version cloud-SSD-plugin-version \ log-page-directory vs-fw-activate-history \ vs-error-reason-identifier vs-smart-add-log \ clear-fw-activate-history vs-smbus-option ocp-telemetry-log-parse" [seagate]="vs-temperature-stats vs-log-page-sup \ vs-smart-add-log vs-pcie-stats clear-pcie-correctable-errors \ get-host-tele get-ctrl-tele vs-internal-log \ plugin-version" [virtium]="save-smart-to-vtview-log show-identify" [shannon]="smart-log-add get-feature-add set-feature-add id-ctrl" [dera]="smart-log-add" [sfx]="smart-log-add lat-stats get-bad-block query-cap \ change-cap set-feature get-feature" [solidigm]="id-ctrl vs-smart-add-log garbage-collect-log \ vs-internal-log latency-tracking-log \ clear-pcie-correctable-errors parse-telemetry-log \ clear-fw-activate-history vs-fw-activate-history log-page-directory \ vs-drive-info cloud-SSDplugin-version market-log \ smart-log-add temp-stats workload-tracker version help" [fdp]="feature version help" [transcend]="healthvalue badblock" [dapustor]="smart-log-add" [zns]="id-ctrl id-ns zone-mgmt-recv \ zone-mgmt-send report-zones close-zone \ finish-zone open-zone reset-zone offline-zone \ set-zone-desc zone-append changed-zone-list" [nvidia]="id-ctrl" [ymtc]="smart-log-add" [inspur]="nvme-vendor-log" [ocp]="smart-add-log latency-monitor-log \ set-latency-monitor-feature internal-log \ clear-fw-activate-history eol-plp-failure-mode \ clear-pcie-correctable-error-counters \ vs-fw-activate-history device-capability-log \ set-dssd-power-state-feature get-dssd-power-state-feature \ telemetry-string-log set-telemetry-profile \ set-dssd-async-event-config get-dssd-async-event-config \ get-error-injection set-error-injection \ hardware-component-log" ) # Associative array mapping plugins to corresponding option completions typeset -Ar _plugin_funcs=( [intel]="plugin_intel_opts" [amzn]="plugin_amzn_opts" [memblaze]="plugin_memblaze_opts" [wdc]="plugin_wdc_opts" [huawei]="plugin_huawei_opts" [toshiba]="plugin_toshiba_opts" [micron]="plugin_micron_opts" [seagate]="plugin_seagate_opts" [virtium]="plugin_virtium_opts" [shannon]="plugin_shannon_opts" [dera]="plugin_dera_opts" [sfx]="plugin_sfx_opts" [solidigm]="plugin_solidigm_opts" [fdp]="plugin_fdp_opts" [transcend]="plugin_transcend_opts" [dapustor]="plugin_dapustor_opts" [zns]="plugin_zns_opts" [nvidia]="plugin_nvidia_opts" [ymtc]="plugin_ymtc_opts" [inspur]="plugin_inspur_opts" [ocp]="plugin_ocp_opts" ) # Top level commands _cmds="list list-subsys id-ctrl id-ns \ id-ns-granularity list-ns list-ctrl \ id-ns-lba-format nvm-id-ns nvm-id-ns-lba-format \ nvm-id-ctrl primary-ctrl-caps list-secondary \ ns-descs id-nvmset id-uuid id-iocs id-domain create-ns \ delete-ns get-ns-id get-log telemetry-log \ fw-log changed-ns-list-log smart-log ana-log \ error-log effects-log endurance-log \ predictable-lat-log pred-lat-event-agg-log \ persistent-event-log endurance-agg-log \ lba-status-log resv-notif-log get-feature \ device-self-test self-test-log set-feature \ set-property get-property format fw-commit \ fw-download admin-passthru io-passthru \ security-send security-recv get-lba-status \ resv-acquire resv-register resv-release \ resv-report dsm copy flush compare read \ write write-zeroes write-uncor verify \ sanitize sanitize-log reset subsystem-reset \ ns-rescan show-regs discover connect-all \ connect disconnect disconnect-all gen-hostnqn \ show-hostnqn tls-key dir-receive dir-send virt-mgmt \ rpmb boot-part-log fid-support-effects-log \ supported-log-pages lockdown media-unit-stat-log \ supported-cap-config-log dim show-topology list-endgrp \ nvme-mi-recv nvme-mi-send get-reg set-reg mgmt-addr-list-log \ rotational-media-info-log changed-alloc-ns-list-log \ io-mgmt-recv io-mgmt-send dispersed-ns-participating-nss-log \ reachability-groups-log reachability-associations-log \ host-discovery-log ave-discovery-log pull--ddc-req-log" # Add plugins: for plugin in "${!_plugin_subcmds[@]}"; do _cmds+=" $plugin" done _cmds+=" version help" if [[ ${#words[*]} -lt 3 ]]; then COMPREPLY+=( $(compgen -W "$_cmds" -- $cur ) ) else for subcmd in "${!_plugin_subcmds[@]}"; do if [[ ${words[1]} == $subcmd ]]; then if [[ ${#words[*]} -lt 4 ]]; then COMPREPLY+=( $(compgen -W "${_plugin_subcmds[$subcmd]}" -- $cur ) ) else func=${_plugin_funcs[$subcmd]} $func ${words[2]} $prev fi return 0 fi done nvme_list_opts ${words[1]} $prev fi return 0 } complete -o default -F _nvme_subcmds nvme
[+]
..
[-] zopfli
[edit]
[-] lftp
[edit]
[-] stream
[edit]
[-] asciidoc.py
[edit]
[-] spovray
[edit]
[-] rpmbuild-md5
[edit]
[-] pm-hibernate
[edit]
[-] ldapvi
[edit]
[-] vgsplit
[edit]
[-] f77
[edit]
[-] iftop
[edit]
[-] udevadm
[edit]
[-] portsnap
[edit]
[-] inject
[edit]
[-] systemctl
[edit]
[-] inotifywait
[edit]
[-] man
[edit]
[-] grub
[edit]
[-] _hexdump
[edit]
[-] quotaoff
[edit]
[-] cardctl
[edit]
[-] rev
[edit]
[-] rpm2txz
[edit]
[-] pidof
[edit]
[-] passwd
[edit]
[-] dropuser
[edit]
[-] ssh-add
[edit]
[-] watch
[edit]
[-] mountpoint
[edit]
[-] automake-1.11
[edit]
[-] nvme
[edit]
[-] micropython
[edit]
[-] compare
[edit]
[-] ulimit
[edit]
[-] l2ping
[edit]
[-] vgreduce
[edit]
[-] g++-8
[edit]
[-] luserdel
[edit]
[-] lzop
[edit]
[-] groupmems
[edit]
[-] gnokii
[edit]
[-] sh
[edit]
[-] gpg
[edit]
[-] c++
[edit]
[-] ionice
[edit]
[-] _renice
[edit]
[-] gccgo-7
[edit]
[-] vgextend
[edit]
[-] pkgadd
[edit]
[-] configure
[edit]
[-] groupmod
[edit]
[-] mplayer
[edit]
[-] urlsnarf
[edit]
[-] hostnamectl
[edit]
[-] screen
[edit]
[-] g4
[edit]
[-] pmake
[edit]
[-] _hwclock
[edit]
[-] vgck
[edit]
[-] lsmcli
[edit]
[-] pkgtool
[edit]
[-] e2freefrag
[edit]
[-] lintian-info
[edit]
[-] pngfix
[edit]
[-] mktemp
[edit]
[-] fsfreeze
[edit]
[-] qemu
[edit]
[-] mplayer2
[edit]
[-] perl
[edit]
[-] gpgv2
[edit]
[-] pydoc
[edit]
[-] dmesg
[edit]
[-] g95
[edit]
[-] composite
[edit]
[-] xgamma
[edit]
[-] svcadm
[edit]
[-] _udevadm
[edit]
[-] modinfo
[edit]
[-] gccgo-8
[edit]
[-] insmod.static
[edit]
[-] createdb
[edit]
[-] chmod
[edit]
[-] dpkg-reconfigure
[edit]
[-] dpkg
[edit]
[-] pigz
[edit]
[-] setarch
[edit]
[-] lz4c
[edit]
[-] minicom
[edit]
[-] automake-1.12
[edit]
[-] jpegoptim
[edit]
[-] ecryptfs-migrate-home
[edit]
[-] apache2ctl
[edit]
[-] chgrp
[edit]
[-] puppetd
[edit]
[-] phing
[edit]
[-] ipcalc
[edit]
[-] mii-diag
[edit]
[-] aclocal-1.12
[edit]
[-] iscsiadm
[edit]
[-] dmidecode
[edit]
[-] bts
[edit]
[-] cfdisk
[edit]
[-] sshmitm
[edit]
[-] secret-tool
[edit]
[-] 7z
[edit]
[-] cloud-init
[edit]
[-] pyvenv-3.4
[edit]
[-] growisofs
[edit]
[-] lsof
[edit]
[-] _chfn
[edit]
[-] display
[edit]
[-] autoscan
[edit]
[-] portupgrade
[edit]
[-] p4
[edit]
[-] sshow
[edit]
[-] arpspoof
[edit]
[-] lsns
[edit]
[-] ldapsearch
[edit]
[-] scrub
[edit]
[-] cc
[edit]
[-] javadoc
[edit]
[-] colrm
[edit]
[-] setterm
[edit]
[-] column
[edit]
[-] py.test-2
[edit]
[-] gm
[edit]
[-] xvfb-run
[edit]
[-] gapplication
[edit]
[-] koji
[edit]
[-] locale-gen
[edit]
[-] ldattach
[edit]
[-] puppetdoc
[edit]
[-] f95
[edit]
[-] lvresize
[edit]
[-] pvremove
[edit]
[-] lscpu
[edit]
[-] ping6
[edit]
[-] modprobe
[edit]
[-] g++
[edit]
[-] ifstat
[edit]
[-] nslookup
[edit]
[-] g++-5
[edit]
[-] rpm
[edit]
[-] hcitool
[edit]
[-] pdftotext
[edit]
[-] pyvenv-3.8
[edit]
[-] pylint
[edit]
[-] dpkg-deb
[edit]
[-] su
[edit]
[-] aclocal-1.15
[edit]
[-] python3.5
[edit]
[-] nsenter
[edit]
[-] bind
[edit]
[-] pkcon
[edit]
[-] ci
[edit]
[-] pkg-get
[edit]
[-] systemd-cryptenroll
[edit]
[-] tuned-adm
[edit]
[-] chmem
[edit]
[-] lsscsi
[edit]
[-] jshint
[edit]
[-] btdownloadheadless.py
[edit]
[-] xmllint
[edit]
[-] xhost
[edit]
[-] fdisk
[edit]
[-] msynctool
[edit]
[-] eog
[edit]
[-] wtf
[edit]
[-] autoreconf
[edit]
[-] _mount.linux
[edit]
[-] systemd-delta
[edit]
[-] lvcreate
[edit]
[-] gpgv
[edit]
[-] lvscan
[edit]
[-] a2x
[edit]
[-] lzip
[edit]
[-] utmpdump
[edit]
[-] dict
[edit]
[-] xrdb
[edit]
[-] journalctl
[edit]
[-] optipng
[edit]
[-] sysctl
[edit]
[-] psql
[edit]
[-] rpcdebug
[edit]
[-] gnome-screenshot
[edit]
[-] gst-inspect-1.0
[edit]
[-] unshare
[edit]
[-] lftpget
[edit]
[-] chcpu
[edit]
[-] mdadm
[edit]
[-] xsltproc
[edit]
[-] btdownloadcurses.py
[edit]
[-] cvsps
[edit]
[-] list_owners
[edit]
[-] mkfs.cramfs
[edit]
[-] pm-is-supported
[edit]
[-] slackpkg
[edit]
[-] badblocks
[edit]
[-] gnome-mplayer
[edit]
[-] chrt
[edit]
[-] autorpm
[edit]
[-] setsebool
[edit]
[-] ldapadd
[edit]
[-] _rtcwake
[edit]
[-] nproc
[edit]
[-] ldappasswd
[edit]
[-] setpriv
[edit]
[-] mencoder
[edit]
[-] vgmerge
[edit]
[-] firewall-cmd
[edit]
[-] filebucket
[edit]
[-] _svnadmin
[edit]
[-] ebtables
[edit]
[-] lpq
[edit]
[-] synclient
[edit]
[-] blkdiscard
[edit]
[-] insmod
[edit]
[-] clisp
[edit]
[-] tightvncviewer
[edit]
[-] ncftp
[edit]
[-] fstrim
[edit]
[-] g77
[edit]
[-] clzip
[edit]
[-] localectl
[edit]
[-] gcc-7
[edit]
[-] look
[edit]
[-] resolvconf
[edit]
[-] star
[edit]
[-] systemd-id128
[edit]
[-] medusa
[edit]
[-] macof
[edit]
[-] ypmatch
[edit]
[-] groupdel
[edit]
[-] kmod
[edit]
[-] sfdisk
[edit]
[-] vgexport
[edit]
[-] portinstall
[edit]
[-] acpi
[edit]
[-] isort
[edit]
[-] ethtool
[edit]
[-] pip3
[edit]
[-] swaplabel
[edit]
[-] col
[edit]
[-] fbi
[edit]
[-] findfs
[edit]
[-] checksec
[edit]
[-] opera
[edit]
[-] ether-wake
[edit]
[-] tcpdump
[edit]
[-] ldapdelete
[edit]
[-] genisoimage
[edit]
[-] nmcli
[edit]
[-] autoheader
[edit]
[-] autoconf
[edit]
[-] pyvenv-3.5
[edit]
[-] chfn
[edit]
[-] kldunload
[edit]
[-] aclocal
[edit]
[-] gsettings
[edit]
[-] chpasswd
[edit]
[-] arp
[edit]
[-] ipsec
[edit]
[-] tracepath6
[edit]
[-] fio
[edit]
[-] smbclient
[edit]
[-] _nmcli
[edit]
[-] edquota
[edit]
[-] puppetrun
[edit]
[-] kill
[edit]
[-] _reptyr
[edit]
[-] _write
[edit]
[-] alternatives
[edit]
[-] ktutil
[edit]
[-] munin-node-configure
[edit]
[-] autossh
[edit]
[-] rcs
[edit]
[-] kernel-install
[edit]
[-] py.test
[edit]
[-] vgrename
[edit]
[-] quota
[edit]
[-] aclocal-1.14
[edit]
[-] lvchange
[edit]
[-] dsniff
[edit]
[-] animate
[edit]
[-] munin-run
[edit]
[-] _svn
[edit]
[-] tsig-keygen
[edit]
[-] protoc
[edit]
[-] vgcfgbackup
[edit]
[-] dmypy
[edit]
[-] sbcl-mt
[edit]
[-] ipmitool
[edit]
[-] runuser
[edit]
[-] compgen
[edit]
[-] sparc-koji
[edit]
[-] jarsigner
[edit]
[-] iperf
[edit]
[-] slapt-get
[edit]
[-] rdesktop
[edit]
[-] _mock
[edit]
[-] civclient
[edit]
[-] createuser
[edit]
[-] hwclock
[edit]
[-] unace
[edit]
[-] remove_members
[edit]
[-] write
[edit]
[-] ldapmodify
[edit]
[-] loginctl
[edit]
[-] hciattach
[edit]
[-] shellcheck
[edit]
[-] uuidgen
[edit]
[-] slogin
[edit]
[-] qemu-system-x86_64
[edit]
[-] gmake
[edit]
[-] wipefs
[edit]
[-] pytest-3
[edit]
[-] iwlist
[edit]
[-] ccze
[edit]
[-] pydocstyle
[edit]
[-] ssh-keygen
[edit]
[-] ldapmodrdn
[edit]
[-] pkgutil
[edit]
[-] python3.6
[edit]
[-] sync_members
[edit]
[-] lvremove
[edit]
[-] sitecopy
[edit]
[-] lsusb
[edit]
[-] pkgrm
[edit]
[-] cleanarch
[edit]
[-] hostname
[edit]
[-] isql
[edit]
[-] ccache
[edit]
[-] querybts
[edit]
[-] systemd-path
[edit]
[-] mypy
[edit]
[-] pwgen
[edit]
[-] json_xs
[edit]
[-] function
[edit]
[-] file
[edit]
[-] bzip2
[edit]
[-] cdrecord
[edit]
[-] freeciv-server
[edit]
[-] unshunt
[edit]
[-] hddtemp
[edit]
[-] filesnarf
[edit]
[-] gst-launch-1.0
[edit]
[-] uuidparse
[edit]
[-] monodevelop
[edit]
[-] snownews
[edit]
[-] java
[edit]
[-] sqlite3
[edit]
[-] gcc-6
[edit]
[-] makepkg
[edit]
[-] chsh
[edit]
[-] _adb
[edit]
[-] s390-koji
[edit]
[-] lsipc
[edit]
[-] rpm2targz
[edit]
[-] strace
[edit]
[-] gprof
[edit]
[-] hping3
[edit]
[-] ifup
[edit]
[-] pine
[edit]
[-] flatpak
[edit]
[-] lvreduce
[edit]
[-] timeout
[edit]
[-] xzdec
[edit]
[-] userdel
[edit]
[-] gfortran
[edit]
[-] wsimport
[edit]
[-] add_members
[edit]
[-] gfortran-6
[edit]
[-] sbcl
[edit]
[-] mailmanctl
[edit]
[-] flake8
[edit]
[-] xmodmap
[edit]
[-] gendiff
[edit]
[-] _su
[edit]
[-] lslogins
[edit]
[-] gcc-8
[edit]
[-] xdg-mime
[edit]
[-] valgrind
[edit]
[-] gpasswd
[edit]
[-] fbgs
[edit]
[-] _cal
[edit]
[-] colcrt
[edit]
[-] lvdisplay
[edit]
[-] cvs
[edit]
[-] xpovray
[edit]
[-] gdb
[edit]
[-] e2label
[edit]
[-] invoke-rc.d
[edit]
[-] interdiff
[edit]
[-] wvdial
[edit]
[-] apt-get
[edit]
[-] dselect
[edit]
[-] export
[edit]
[-] lsmem
[edit]
[-] k3b
[edit]
[-] freeciv
[edit]
[-] pbzip2
[edit]
[-] list_members
[edit]
[-] rfkill
[edit]
[-] python3.7
[edit]
[-] xxd
[edit]
[-] qrunner
[edit]
[-] firefox
[edit]
[-] stunnel.bash
[edit]
[-] ipv6calc
[edit]
[-] useradd
[edit]
[-] larch
[edit]
[-] yum-arch
[edit]
[-] bwrap
[edit]
[-] pyvenv
[edit]
[-] btdownloadgui.py
[edit]
[-] losetup
[edit]
[-] hunspell
[edit]
[-] dpkg-source
[edit]
[-] busctl
[edit]
[-] tcpkill
[edit]
[-] gccgo
[edit]
[-] lua
[edit]
[-] _runuser
[edit]
[-] vgs
[edit]
[-] dumpdb
[edit]
[-] ncal
[edit]
[-] identify
[edit]
[-] lsinitrd
[edit]
[-] kldload
[edit]
[-] py.test-3
[edit]
[-] gccgo-6
[edit]
[-] getopt
[edit]
[-] gfortran-7
[edit]
[-] scp
[edit]
[-] wine-stable
[edit]
[-] vpnc
[edit]
[-] bootctl
[edit]
[-] nmap
[edit]
[-] isosize
[edit]
[-] vigr
[edit]
[-] gtar
[edit]
[-] pyvenv-3.6
[edit]
[-] pypy3
[edit]
[-] chronyc
[edit]
[-] kplayer
[edit]
[-] upgradepkg
[edit]
[-] pytest-2
[edit]
[-] prlimit
[edit]
[-] wine
[edit]
[-] wall
[edit]
[-] lvmdiskscan
[edit]
[-] gpc
[edit]
[-] montage
[edit]
[-] vipw
[edit]
[-] asciidoc
[edit]
[-] puppetca
[edit]
[-] lastlog
[edit]
[-] gcj
[edit]
[-] list_lists
[edit]
[-] irqtop
[edit]
[-] postsuper
[edit]
[-] javac
[edit]
[-] alpine
[edit]
[-] automake
[edit]
[-] puppetqd
[edit]
[-] mozilla-firefox
[edit]
[-] pvchange
[edit]
[-] idn
[edit]
[-] mussh
[edit]
[-] fincore
[edit]
[-] _yum
[edit]
[-] rcsdiff
[edit]
[-] puppetmasterd
[edit]
[-] plzip
[edit]
[-] xrandr
[edit]
[-] groupadd
[edit]
[-] genaliases
[edit]
[-] mtx
[edit]
[-] dd
[edit]
[-] convert
[edit]
[-] rpmbuild
[edit]
[-] python3.3
[edit]
[-] smartctl
[edit]
[-] dnf
[edit]
[-] lz4
[edit]
[-] tox
[edit]
[-] pxz
[edit]
[-] scriptlive
[edit]
[-] dnsspoof
[edit]
[-] postmap
[edit]
[-] dhclient
[edit]
[-] strings
[edit]
[-] pccardctl
[edit]
[-] vgimport
[edit]
[-] logger
[edit]
[-] mkfs
[edit]
[-] pkg_info
[edit]
[-] getent
[edit]
[-] sysbench
[edit]
[-] cksfv
[edit]
[-] explodepkg
[edit]
[-] whereis
[edit]
[-] mkisofs
[edit]
[-] readprofile
[edit]
[-] iconv
[edit]
[-] pv
[edit]
[-] aclocal-1.11
[edit]
[-] scriptreplay
[edit]
[-] dcop
[edit]
[-] slapt-src
[edit]
[-] rsync
[edit]
[-] lisp
[edit]
[-] ypcat
[edit]
[-] xz
[edit]
[-] systemd-cat
[edit]
[-] hd
[edit]
[-] dnssec-keygen
[edit]
[-] _dmesg
[edit]
[-] ip
[edit]
[-] op
[edit]
[-] apt-build
[edit]
[-] _repomanage
[edit]
[-] lsirq
[edit]
[-] postcat
[edit]
[-] influx
[edit]
[-] gnatmake
[edit]
[-] patch
[edit]
[-] cpio
[edit]
[-] pdlzip
[edit]
[-] qemu-system-i386
[edit]
[-] abook
[edit]
[-] gcc
[edit]
[-] mtr
[edit]
[-] wdctl
[edit]
[-] oggdec
[edit]
[-] arch
[edit]
[-] pylint-2
[edit]
[-] g++-6
[edit]
[-] geoiplookup6
[edit]
[-] tcpnice
[edit]
[-] jq
[edit]
[-] gssdp-discover
[edit]
[-] filefrag
[edit]
[-] gfortran-8
[edit]
[-] pkg_deinstall
[edit]
[-] xfreerdp
[edit]
[-] dropdb
[edit]
[-] _svnlook
[edit]
[-] gzip
[edit]
[-] ppc-koji
[edit]
[-] pm-suspend
[edit]
[-] config_list
[edit]
[-] pvmove
[edit]
[-] rpm2tgz
[edit]
[-] _rfkill
[edit]
[-] cppcheck
[edit]
[-] postfix
[edit]
[-] bmake
[edit]
[-] _ionice
[edit]
[-] smbcquotas
[edit]
[-] gkrellm
[edit]
[-] vgconvert
[edit]
[-] perltidy
[edit]
[-] lvextend
[edit]
[-] carton
[edit]
[-] lrzip
[edit]
[-] evince
[edit]
[-] automake-1.13
[edit]
[-] _look
[edit]
[-] ifdown
[edit]
[-] nsupdate
[edit]
[-] pwck
[edit]
[-] find_member
[edit]
[-] sdptool
[edit]
[-] pycodestyle
[edit]
[-] grpck
[edit]
[-] rlog
[edit]
[-] chrome
[edit]
[-] gfortran-5
[edit]
[-] tracepath
[edit]
[-] setquota
[edit]
[-] biosdecode
[edit]
[-] swapoff
[edit]
[-] rpmcheck
[edit]
[-] ralsh
[edit]
[-] xmms
[edit]
[-] _newgrp
[edit]
[-] jar
[edit]
[-] pm-suspend-hybrid
[edit]
[-] withlist
[edit]
[-] blkzone
[edit]
[-] import
[edit]
[-] qdbus
[edit]
[-] ant
[edit]
[-] lslocks
[edit]
[-] ul
[edit]
[-] prelink
[edit]
[-] freeciv-xaw
[edit]
[-] removepkg
[edit]
[-] mysqladmin
[edit]
[-] zopflipng
[edit]
[-] rename
[edit]
[-] wodim
[edit]
[-] gnumake
[edit]
[-] brctl
[edit]
[-] unrar
[edit]
[-] fsck
[edit]
[-] gkrellm2
[edit]
[-] bk
[edit]
[-] quotaon
[edit]
[-] povray
[edit]
[-] kcov
[edit]
[-] blockdev
[edit]
[-] pyflakes
[edit]
[-] sbopkg
[edit]
[-] cpan2dist
[edit]
[-] apropos
[edit]
[-] hexdump
[edit]
[-] xmlwf
[edit]
[-] hping
[edit]
[-] gdbus
[edit]
[-] python3
[edit]
[-] wget
[edit]
[-] ntpdate
[edit]
[-] pvscan
[edit]
[-] aclocal-1.13
[edit]
[-] ipcs
[edit]
[-] freeciv-gtk3
[edit]
[-] alias
[edit]
[-] devlink
[edit]
[-] smbcacls
[edit]
[-] links2
[edit]
[-] addpart
[edit]
[-] systemd-detect-virt
[edit]
[-] mogrify
[edit]
[-] webmitm
[edit]
[-] python2
[edit]
[-] cfrun
[edit]
[-] munindoc
[edit]
[-] co
[edit]
[-] systemd-cgls
[edit]
[-] pgrep
[edit]
[-] aspell
[edit]
[-] pytest
[edit]
[-] pvs
[edit]
[-] ldapwhoami
[edit]
[-] mesg
[edit]
[-] ifstatus
[edit]
[-] trust
[edit]
[-] clone_member
[edit]
[-] ipcmk
[edit]
[-] automake-1.14
[edit]
[-] automake-1.15
[edit]
[-] renice
[edit]
[-] iwconfig
[edit]
[-] ri
[edit]
[-] iptables
[edit]
[-] pylint-3
[edit]
[-] smbpasswd
[edit]
[-] python3.8
[edit]
[-] google-chrome
[edit]
[-] gitk
[edit]
[-] findmnt
[edit]
[-] chown
[edit]
[-] mkinitrd
[edit]
[-] pyvenv-3.7
[edit]
[-] _umount
[edit]
[-] eject
[edit]
[-] cancel
[edit]
[-] semanage
[edit]
[-] fsck.minix
[edit]
[-] newusers
[edit]
[-] aclocal-1.16
[edit]
[-] ownership
[edit]
[-] lvs
[edit]
[-] desktop-file-validate
[edit]
[-] file-roller
[edit]
[-] timedatectl
[edit]
[-] update-rc.d
[edit]
[-] ifquery
[edit]
[-] geoiplookup
[edit]
[-] nc
[edit]
[-] ss
[edit]
[-] sudoedit
[edit]
[-] hid2hci
[edit]
[-] pkg-config
[edit]
[-] typeset
[edit]
[-] whatis
[edit]
[-] links
[edit]
[-] systemd-run
[edit]
[-] python3.4
[edit]
[-] lilo
[edit]
[-] smbtree
[edit]
[-] pack200
[edit]
[-] resizepart
[edit]
[-] xdg-settings
[edit]
[-] tc
[edit]
[-] fusermount
[edit]
[-] mkswap
[edit]
[-] dpkg-query
[edit]
[-] munin-update
[edit]
[-] rtcwake
[edit]
[-] appstream-util
[edit]
[-] mmsitepass
[edit]
[-] vgscan
[edit]
[-] deja-dup
[edit]
[-] ipcrm
[edit]
[-] gio
[edit]
[-] msgsnarf
[edit]
[-] ldapcompare
[edit]
[-] vgchange
[edit]
[-] lbzip2
[edit]
[-] systemd-analyze
[edit]
[-] gcc-5
[edit]
[-] mailsnarf
[edit]
[-] python
[edit]
[-] etherwake
[edit]
[-] freeciv-sdl
[edit]
[-] unpack200
[edit]
[-] pvdisplay
[edit]
[-] make
[edit]
[-] script
[edit]
[-] appdata-validate
[edit]
[-] ssh-copy-id
[edit]
[-] gresource
[edit]
[-] usermod
[edit]
[-] delpart
[edit]
[-] gpg2
[edit]
[-] fallocate
[edit]
[-] aptitude
[edit]
[-] hping2
[edit]
[-] systemd-cgtop
[edit]
[-] pvcreate
[edit]
[-] declare
[edit]
[-] last
[edit]
[-] blkid
[edit]
[-] bsdtar
[edit]
[-] jps
[edit]
[-] vmstat
[edit]
[-] lzma
[edit]
[-] freebsd-update
[edit]
[-] printenv
[edit]
[-] gmplayer
[edit]
[-] perldoc
[edit]
[-] dfutool
[edit]
[-] mii-tool
[edit]
[-] radvdump
[edit]
[-] newlist
[edit]
[-] _chsh
[edit]
[-] hciconfig
[edit]
[-] smbget
[edit]
[-] getconf
[edit]
[-] ctrlaltdel
[edit]
[-] _umount.linux
[edit]
[-] curl
[edit]
[-] ngrep
[edit]
[-] plague-client
[edit]
[-] ping
[edit]
[-] feh
[edit]
[-] aptitude-curses
[edit]
[-] faillog
[edit]
[-] lintian
[edit]
[-] pkill
[edit]
[-] mcookie
[edit]
[-] nethogs
[edit]
[-] automake-1.10
[edit]
[-] crontab
[edit]
[-] puppet
[edit]
[-] find
[edit]
[-] rrdtool
[edit]
[-] cryptsetup
[edit]
[-] hardlink
[edit]
[-] colormake
[edit]
[-] tipc
[edit]
[-] mutt
[edit]
[-] mysql
[edit]
[-] zramctl
[edit]
[-] vpddecode
[edit]
[-] dconf
[edit]
[-] chage
[edit]
[-] python2.7
[edit]
[-] pm-powersave
[edit]
[-] chrpath
[edit]
[-] gccgo-5
[edit]
[-] 2to3
[edit]
[-] mc
[edit]
[-] vgremove
[edit]
[-] reportbug
[edit]
[-] svk
[edit]
[-] postconf
[edit]
[-] postalias
[edit]
[-] lpr
[edit]
[-] pwd
[edit]
[-] fdformat
[edit]
[-] htop
[edit]
[-] _mount
[edit]
[-] cfagent
[edit]
[-] _eject
[edit]
[-] wol
[edit]
[-] perlcritic
[edit]
[-] lsblk
[edit]
[-] g++-7
[edit]
[-] dumpe2fs
[edit]
[-] jsonschema
[edit]
[-] cal
[edit]
[-] check_perms
[edit]
[-] sftp
[edit]
[-] pinfo
[edit]
[-] qemu-kvm
[edit]
[-] namei
[edit]
[-] iwpriv
[edit]
[-] mr
[edit]
[-] id
[edit]
[-] setsid
[edit]
[-] gphoto2
[edit]
[-] complete
[edit]
[-] rfcomm
[edit]
[-] vncviewer
[edit]
[-] iwspy
[edit]
[-] vgcfgrestore
[edit]
[-] 7za
[edit]
[-] info
[edit]
[-] change_pw
[edit]
[-] avctrl
[edit]
[-] p11-kit
[edit]
[-] repquota
[edit]
[-] htpasswd
[edit]
[-] installpkg
[edit]
[-] conjure
[edit]
[-] luac
[edit]
[-] apt-cache
[edit]
[-] cpupower
[edit]
[-] smbtar
[edit]
[-] google-chrome-stable
[edit]
[-] gcl
[edit]
[-] tune2fs
[edit]
[-] pivot_root
[edit]
[-] mcrypt
[edit]
[-] iceweasel
[edit]
[-] pypy
[edit]
[-] taskset
[edit]
[-] automake-1.16
[edit]
[-] wine-development
[edit]
[-] vgcreate
[edit]
[-] chromium
[edit]
[-] pwdx
[edit]
[-] rdict
[edit]
[-] _xm
[edit]
[-] autoupdate
[edit]
[-] lusermod
[edit]
[-] list_admins
[edit]
[-] arm-koji
[edit]
[-] lvm
[edit]
[-] vgdisplay
[edit]
[-] git
[edit]
[-] xvnc4viewer
[edit]
[-] tshark
[edit]
[-] route
[edit]
[-] check_db
[edit]
[-] flock
[edit]
[-] sidedoor
[edit]
[-] mkfs.minix
[edit]
[-] mdecrypt
[edit]
[-] tar
[edit]
[-] ssh
[edit]
[-] coredumpctl
[edit]
[-] lvrename
[edit]
[-] iperf3
[edit]
[-] freeciv-gtk2
[edit]
[-] swapon
[edit]
[-] aclocal-1.10
[edit]
[-] host
[edit]
[-] update-alternatives
[edit]
[-] chkconfig
[edit]
[-] partx
[edit]
[-] rmlist
[edit]
[-] openssl
[edit]
[-] quotacheck
[edit]
[-] dot
[edit]
[-] fsck.cramfs
[edit]
[-] luseradd
[edit]
[-] vgmknodes
[edit]
[-] civserver
[edit]
[-] inotifywatch
[edit]
[-] rmmod
[edit]
[-] chromium-browser
[edit]
[-] muttng
[edit]
[-] pydoc3
[edit]
[-] pkg_delete
[edit]
[-] killall
[edit]
[-] more
[edit]
[-] tracker3
[edit]
[-] _modules
[edit]
[-] sudo
[edit]
[-] ciptool
[edit]
[-] arping
[edit]
[-] dracut
[edit]
[-] sshfs
[edit]
[-] mdtool
[edit]