PATH:
usr
/
share
/
bash-completion
/
completions
# SPDX-License-Identifier: GPL-2.0-only # # Copyright (C) 2015-2023 Red Hat, Inc., Tony Asleson <tasleson@redhat.com> # # Bash completion for lsmcli. This may be far from ideal, # suggestions & improvements appreciated! potential_args='' # Skip value lookups by default NO_VALUE_LOOKUP=${LSMCLI_AUTO_COMPLETE_VALUE:=0} function join { local IFS="$1"; shift; echo "$*"; } # Linear search of an array of strings for the specified string function listcontains() { declare -a the_list=("${!1}") for word in "${the_list[@]}" ; do [[ ${word} == $2 ]] && return 0 done return 1 } # Given a list of what is possible and what is on the command line return # what is left. # $1 What is possible # Results are returned in global string $potential_args function possible_args() { local l=() for i in $1 do listcontains COMP_WORDS[@] "$i" if [[ $? -eq 1 ]] ; then l+=("$i") fi done potential_args=$( join ' ', "${l[@]}" ) } # Returns the position of the value in the COMP_WORDS that contains $1, or # 255 if it doesn't exist function arg_index() { count=0 for i in "${COMP_WORDS[@]}" do if [[ "$i" == "$1" ]] ; then return ${count} fi let count+=1 done return 255 } function _lsm() { local cur prev opts sep='#' COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" opts_short="-b -v -u -P -H -t -e -f -w -b" opts_long=" --help --version --uri --prompt --human --terse --enum \ --force --wait --header --script " opts_cmds="list job-status capabilities plugin-info volume-create \ volume-delete volume-resize volume-replicate \ volume-replicate-range volume-replicate-range-block-size \ volume-dependants volume-dependants-rm volume-access-group \ volume-mask volume-unmask access-group-create \ access-group-delete access-group-add access-group-remove \ volume-enable volume-disable iscsi-chap fs-create fs-delete \ fs-resize fs-export fs-unexport fs-clone fs-snap-create \ fs-snap-delete fs-snap-restore fs-dependants fs-dependants-rm \ file-clone ls lp lv ld la lf lt lb c p vc vd vr vm vi ve vi ac \ aa ar ad vri volume-raid-info pool-member-info pmi \ vrc volume-raid-create vrcc volume-raid-create-cap \ volume-phy-disk-cache-update vpdcu \ volume-read-cache-policy-update vrcpu \ volume-write-cache-policy-update vwcpu \ volume-cache-info vci volume-ident-led-on vilon \ volume-ident-led-off viloff local-disk-list ldl \ system-read-cache-pct-update srcpu \ local-disk-ident-led-on ldilon \ local-disk-ident-led-off ldiloff \ local-disk-fault-led-on ldflon \ local-disk-fault-led-off ldfloff" list_args="--type" list_type_args="volumes pools fs snapshots exports nfs_client_auth \ access_groups systems disks plugins target_ports \ batteries" opts_filter="--sys --pool --vol --disk --ag --fs --nfs" cap_args="--sys" volume_create_args="--name --size --pool" volume_delete_args="--vol --force" # Should force be here, to easy to tab through?" volume_resize_args="--vol --size --force" # Should force be here, to easy to tab through?" volume_replicate_args="--vol --name --rep-type" # Hmmm, this looks like a bug with CLI, should support lower and upper case? volume_rep_types="CLONE COPY MIRROR_ASYNC MIRROR_SYNC" volume_replicate_range_args="--src-vol --dst-vol --rep-type --src-start \ --dst-start --count --force" # Force ? volume_replication_range_bs="--sys" volume_dependants="--vol" volume_access_group_args="--vol" volume_masking_args="--vol --ag" access_group_create_args="--name --init --sys" access_group_delete_args="--ag" access_group_add_remove_args="--ag --init" volume_enable_disable_args="--vol" volume_raidinfo_args="--vol" iscsi_chap_args="--in-user --in-pass --out-user --out-pass" fs_create_args="--name --size --pool" fs_delete_args="--fs --force" # Force ? fs_resize_args="--fs --size --force" # Force ? fs_export_args="--fs --exportpath --anonuid --auth-type --root-host --ro-host --rw-host" fs_unexport_args="--export" fs_clone_args="--src-fs --dst-name" fs_snap_create_args="--name --fs" fs_snap_delete_args="--snap --fs" fs_snap_restore_args="--snap --fs --file --fileas --force" fs_dependants_args="--fs" file_clone_args="--fs --src --dst --backing-snapshot" pool_member_info_args="--pool" volume_raid_create_args="--name --disk --raid-type --strip-size" volume_raid_create_cap_args="--sys" volume_phy_disk_cache_update_args="--vol --policy" volume_read_cache_policy_update_args="--vol --policy" volume_write_cache_policy_update_args="--vol --policy" volume_cache_info_args="--vol" volume_ident_led_on_off_args="--vol" system_read_cache_pct_update_args="--vol --read-pct" local_disk_led_args="--path" # These operations can potentially be slow and cause hangs depending on plugin and configuration if [[ ${NO_VALUE_LOOKUP} -ne 0 ]] ; then # Check if we have somthing present that we can help the user with case "${prev}" in --sys) # Is there a better way todo this? local items=`lsmcli list --type systems -t${sep} | awk -F ${sep} '{print $1}'` COMPREPLY=( $(compgen -W "${items}" -- ${cur}) ) return 0 ;; --pool) # Is there a better way todo this? local items=`lsmcli list --type pools -t${sep} | awk -F ${sep} '{print $1}'` COMPREPLY=( $(compgen -W "${items}" -- ${cur}) ) return 0 ;; --vol|--src-vol|--dst-vol) # Is there a better way todo this? local items=`lsmcli list --type volumes -t${sep} | awk -F ${sep} '{print $1}'` COMPREPLY=( $(compgen -W "${items}" -- ${cur}) ) return 0 ;; --disk) # Is there a better way todo this? local items=`lsmcli list --type disks -t${sep} | awk -F ${sep} '{print $1}'` COMPREPLY=( $(compgen -W "${items}" -- ${cur}) ) return 0 ;; --ag) # Is there a better way todo this? local items=`lsmcli list --type access_groups -t${sep} | awk -F ${sep} '{print $1}'` COMPREPLY=( $(compgen -W "${items}" -- ${cur}) ) return 0 ;; --init) arg_index "--ag" i=$? # We have an access group present on the command line so filter the intiators to it if [[ ${i} -ne 255 ]]; then # It would be better if we filtered the result with the access group # if it's present on the command line already. local items=`lsmcli list --type access_groups -t${sep} --ag ${COMP_WORDS[${i}+1]} | awk -F ${sep} '{print $3}'` COMPREPLY=( $(compgen -W "${items}" -- ${cur}) ) return 0 else local items=`lsmcli list --type access_groups -t${sep} | awk -F ${sep} '{print $3}'` COMPREPLY=( $(compgen -W "${items}" -- ${cur}) ) return 0 fi ;; --nfs-export) # Is there a better way todo this? local items=`lsmcli list --type exports -t${sep} | awk -F ${sep} '{print $1}'` COMPREPLY=( $(compgen -W "${items}" -- ${cur}) ) return 0 ;; --tgt) # Is there a better way todo this? local items=`lsmcli list --type target_ports -t${sep} | awk -F ${sep} '{print $1}'` COMPREPLY=( $(compgen -W "${items}" -- ${cur}) ) return 0 ;; --fs|--src-fs) local items=`lsmcli list --type fs -t${sep} | awk -F ${sep} '{print $1}'` COMPREPLY=( $(compgen -W "${items}" -- ${cur}) ) return 0 ;; --export) local items=`lsmcli list --type exports -t${sep} | awk -F ${sep} '{print $1}'` COMPREPLY=( $(compgen -W "${items}" -- ${cur}) ) return 0 ;; --snap) arg_index "--fs" i=$? # We have an access group present on the command line so filter the snapshots to it if [[ ${i} -ne 255 ]]; then local items=`lsmcli list --type snapshots \ --fs ${COMP_WORDS[${i}+1]} -t${sep} | awk -F ${sep} '{print $1}'` COMPREPLY=( $(compgen -W "${items}" -- ${cur}) ) return 0 else COMPREPLY=( $(compgen -W "" -- ${cur}) ) return 0 fi ;; --auth-type) local items=`lsmcli list --type nfs_client_auth -t ' '` COMPREPLY=( $(compgen -W "${items}" -- ${cur}) ) return 0 ;; *) ;; esac fi # Cases where we don't have to worry about look-up time case "${prev}" in --type) COMPREPLY=( $(compgen -W "${list_type_args}" -- ${cur}) ) return 0 ;; --size|--count|--src-start|--dst-start|--name|--in-user|--in-pass|\ --out-user|--out-pass|--exportpath|--anonuid|--root-host|--ro-host|\ --rw-host|--dest-name|--file|--fileas|--src|--dst) # These we cannot lookup, so don't offer any values COMPREPLY=( $(compgen -W "" -- ${cur}) ) return 0 ;; --rep-type) COMPREPLY=( $(compgen -W "${volume_rep_types}" -- ${cur}) ) return 0 ;; snapshots) # Specific listing case where you need a fs too if [[ ${COMP_WORDS[COMP_CWORD-2]} == '--type' && \ ${COMP_WORDS[COMP_CWORD-3]} == 'list' ]] ; then COMPREPLY=( $(compgen -W "--fs" -- ${cur}) ) return 0 fi ;; *) esac case "${COMP_WORDS[1]}" in job-status) possible_args "--job" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; list) possible_args ${list_args} COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; volume-create|vc) possible_args "${volume_create_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; volume-delete|vd) possible_args "${volume_delete_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; volume-raid-info|vri) possible_args "${volume_raidinfo_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; volume-resize|vr) possible_args "${volume_resize_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; volume-replicate) possible_args "${volume_replicate_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; volume-replicate-range) possible_args "${volume_replicate_range_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; volume-replicate-range-block-size) possible_args "${volume_replication_range_bs}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; volume-dependants|volume-dependants-rm) possible_args "${volume_dependants}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; volume-access-group) possible_args "${volume_access_group_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; volume-mask|volume-unmask|vm|vu) possible_args "${volume_masking_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; access-group-create|ac) possible_args "${access_group_create_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; access-group-delete|ad) possible_args "${access_group_delete_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; access-group-add|access-group-remove|aa|ar) possible_args "${access_group_add_remove_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; volume-enable|volume-disable|ve|vi) possible_args "${volume_enable_disable_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; iscsi-chap) possible_args "${iscsi_chap_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; fs-create) possible_args "${fs_create_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; fs-delete) possible_args "${fs_delete_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; fs-resize) possible_args "${fs_resize_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; fs-export) possible_args "${fs_export_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; fs-unexport) possible_args "${fs_unexport_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; fs-clone) possible_args "${fs_clone_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; fs-snap-create) possible_args "${fs_snap_create_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; fs-snap-delete) possible_args "${fs_snap_delete_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; fs-snap-restore) possible_args "${fs_snap_restore_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; fs-dependants|fs-dependants-rm) possible_args "${fs_dependants_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; file-clone) possible_args "${file_clone_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; capabilities|c) possible_args "${cap_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; pool-member-info|pmi) possible_args "${pool_member_info_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; volume-raid-create|vrc) possible_args "${volume_raid_create_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; volume-raid-create-cap|vrcc) possible_args "${volume_raid_create_cap_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; volume-phy-disk-cache-update|vpdcu) possible_args "${volume_phy_disk_cache_update_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; volume-read-cache-policy-update|vrcpu) possible_args "${volume_read_cache_policy_update_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; volume-write-cache-policy-update|vwcpu) possible_args "${volume_write_cache_policy_update_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; volume-cache-info|vci) possible_args "${volume_cache_info_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; volume-ident-led-on|volume-ident-led-off|vilon|viloff) possible_args "${volume_ident_led_on_off_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; system-read-cache-pct-update|srcpu) possible_args "${system_read_cache_pct_update_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; local-disk-ident-led-on|ldilon| \ local-disk-ident-led-off|ldiloff| \ local-disk-fault-led-on|ldflon| \ local-disk-fault-led-off|ldfloff) possible_args "${local_disk_led_args}" COMPREPLY=( $(compgen -W "${potential_args}" -- ${cur}) ) return 0 ;; *) ;; esac # Handle the case where we are starting out with nothing if [[ ${prev} == 'lsmcli' ]] ; then if [[ ${cur} == --* ]] ; then COMPREPLY=( $(compgen -W "${opts_long}" -- ${cur}) ) return 0 fi if [[ ${cur} == -* ]] ; then COMPREPLY=( $(compgen -W "${opts_short}${opts_long}" -- ${cur}) ) return 0 fi if [[ ${cur} == * ]] ; then COMPREPLY=( $(compgen -W "${opts_short}${opts_long}${opts_cmds}" -- ${cur}) ) return 0 fi fi } complete -F _lsm lsmcli
[+]
..
[-] 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]