__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# bash completion for lvm -*- shell-script -*-
_comp_cmd_lvm__filedir()
{
_comp_compgen -c "${cur:-/dev/}" filedir
}
_comp_cmd_lvm__volumegroups()
{
_comp_compgen_split -- "$(vgscan 2>/dev/null |
command sed -n -e 's|.*Found.*"\(.*\)".*$|\1|p')"
}
_comp_cmd_lvm__physicalvolumes_all()
{
_comp_compgen_split -- "$(pvscan 2>/dev/null |
command sed -n -e 's|^.*PV \([^ ]*\) .*|\1|p')"
}
_comp_cmd_lvm__physicalvolumes()
{
_comp_compgen_split -- "$(pvscan 2>/dev/null |
command sed -n -e 's|^.*PV \(.*\) VG.*$|\1|p')"
}
_comp_cmd_lvm__logicalvolumes()
{
_comp_compgen_split -- "$(lvscan 2>/dev/null |
command sed -n -e "s|^.*'\(.*\)'.*$|\1|p")"
if [[ $cur == /dev/mapper/* ]]; then
_comp_compgen -a filedir
local i
for i in "${!COMPREPLY[@]}"; do
[[ ${COMPREPLY[i]} == */control ]] && unset -v 'COMPREPLY[i]'
done
fi
}
_comp_cmd_lvm__units()
{
_comp_compgen -- -W 'h s b k m g t H K M G T'
}
_comp_cmd_lvm__sizes()
{
_comp_compgen -- -W 'k K m M g G t T'
}
# @param $1 glob matching args known to take an argument
_comp_cmd_lvm__count_args()
{
REPLY=0
local offset=1
if [[ ${words[0]} == lvm ]]; then
offset=2
fi
local i prev=${words[offset - 1]}
for ((i = offset; i < cword; i++)); do
# shellcheck disable=SC2053
if [[ ${words[i]} != -* && $prev != $1 ]]; then
((REPLY++))
fi
prev=${words[i]}
done
}
_comp_cmd_lvmdiskscan()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
fi
} &&
complete -F _comp_cmd_lvmdiskscan lvmdiskscan
_comp_cmd_pvscan()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
fi
} &&
complete -F _comp_cmd_pvscan pvscan
_comp_cmd_pvs()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[oO]*)'
# shellcheck disable=SC2254
case $prev in
--options | --sort | -${noargopts}[oO])
_comp_compgen -- -W 'pv_fmt pv_uuid pv_size pv_free pv_used pv_name
pv_attr pv_pe_count pv_pe_alloc_count'
return
;;
--units)
_comp_cmd_lvm__units
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__physicalvolumes_all
fi
} &&
complete -F _comp_cmd_pvs pvs
_comp_cmd_pvdisplay()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
case $prev in
--units)
_comp_cmd_lvm__units
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__physicalvolumes_all
fi
} &&
complete -F _comp_cmd_pvdisplay pvdisplay
_comp_cmd_pvchange()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[Ax]*)'
# shellcheck disable=SC2254
case $prev in
--autobackup | --allocatable | -${noargopts}[Ax])
_comp_compgen -- -W 'y n'
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__physicalvolumes_all
fi
} &&
complete -F _comp_cmd_pvchange pvchange
_comp_cmd_pvcreate()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[M]*)'
# shellcheck disable=SC2254
case $prev in
--restorefile)
_comp_compgen_filedir
return
;;
--metadatatype | -${noargopts}M)
_comp_compgen -- -W '1 2'
return
;;
--metadatacopies)
_comp_compgen -- -W '0 1 2'
return
;;
--metadatasize | --setphysicalvolumesize)
_comp_cmd_lvm__sizes
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__filedir
fi
} &&
complete -F _comp_cmd_pvcreate pvcreate
_comp_cmd_pvmove()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[An]*)'
# shellcheck disable=SC2254
case $prev in
--autobackup | -${noargopts}A)
_comp_compgen -- -W 'y n'
return
;;
--name | -${noargopts}n)
_comp_cmd_lvm__logicalvolumes
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__physicalvolumes
fi
} &&
complete -F _comp_cmd_pvmove pvmove
_comp_cmd_pvremove()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__physicalvolumes_all
fi
} &&
complete -F _comp_cmd_pvremove pvremove
_comp_cmd_vgscan()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
fi
} &&
complete -F _comp_cmd_vgscan vgscan
_comp_cmd_vgs()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[oO]*)'
# shellcheck disable=SC2254
case $prev in
--options | --sort | -${noargopts}[oO])
_comp_compgen -- -W 'vg_fmt vg_uuid vg_name vg_attr vg_size vg_free
vg_sysid vg_extent_size vg_extent_count vg_free_count max_lv
max_pv pv_count lv_count snap_count vg_seqno'
return
;;
--units)
_comp_cmd_lvm__units
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__volumegroups
fi
} &&
complete -F _comp_cmd_vgs vgs
_comp_cmd_vgdisplay()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
case $prev in
--units)
_comp_cmd_lvm__units
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__volumegroups
fi
} &&
complete -F _comp_cmd_vgdisplay vgdisplay
_comp_cmd_vgchange()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[aAx]*)'
# shellcheck disable=SC2254
case $prev in
--available | --autobackup | --resizeable | -${noargopts}[aAx])
_comp_compgen -- -W 'y n'
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__volumegroups
fi
} &&
complete -F _comp_cmd_vgchange vgchange
_comp_cmd_vgcreate()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[AMs]*)'
# shellcheck disable=SC2254
case $prev in
--autobackup | -${noargopts}A)
_comp_compgen -- -W 'y n'
return
;;
--metadatatype | -${noargopts}M)
_comp_compgen -- -W '1 2'
return
;;
--physicalextentsize | -${noargopts}s)
_comp_cmd_lvm__sizes
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
local REPLY
_comp_cmd_lvm__count_args '@(-A|--autobackup|-M|--metadatatype|-s|--physicalextentsize)'
if ((REPLY == 0)); then
_comp_cmd_lvm__volumegroups
else
_comp_cmd_lvm__physicalvolumes_all
fi
fi
} &&
complete -F _comp_cmd_vgcreate vgcreate
_comp_cmd_vgremove()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__volumegroups
fi
} &&
complete -F _comp_cmd_vgremove vgremove
_comp_cmd_vgrename()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[A]*)'
# shellcheck disable=SC2254
case $prev in
--autobackup | -${noargopts}A)
_comp_compgen -- -W 'y n'
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__volumegroups
fi
} &&
complete -F _comp_cmd_vgrename vgrename
_comp_cmd_vgreduce()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[A]*)'
# shellcheck disable=SC2254
case $prev in
--autobackup | -${noargopts}A)
_comp_compgen -- -W 'y n'
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
local REPLY
_comp_cmd_lvm__count_args '@(-A|--autobackup)'
if ((REPLY == 0)); then
_comp_cmd_lvm__volumegroups
else
_comp_cmd_lvm__physicalvolumes
fi
fi
} &&
complete -F _comp_cmd_vgreduce vgreduce
_comp_cmd_vgextend()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[AL]*)'
# shellcheck disable=SC2254
case $prev in
--autobackup | -${noargopts}A)
_comp_compgen -- -W 'y n'
return
;;
--size | -${noargopts}L)
_comp_cmd_lvm__sizes
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
local REPLY
_comp_cmd_lvm__count_args '@(-A|--autobackup|-L|--size)'
if ((REPLY == 0)); then
_comp_cmd_lvm__volumegroups
else
_comp_cmd_lvm__physicalvolumes_all
fi
fi
} &&
complete -F _comp_cmd_vgextend vgextend
_comp_cmd_vgport()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__volumegroups
fi
} &&
complete -F _comp_cmd_vgport vgimport vgexport
_comp_cmd_vgck()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__volumegroups
fi
} &&
complete -F _comp_cmd_vgck vgck
_comp_cmd_vgconvert()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[M]*)'
# shellcheck disable=SC2254
case $prev in
--metadatatype | -${noargopts}M)
_comp_compgen -- -W '1 2'
return
;;
--metadatacopies)
_comp_compgen -- -W '0 1 2'
return
;;
--metadatasize)
_comp_cmd_lvm__sizes
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__volumegroups
fi
} &&
complete -F _comp_cmd_vgconvert vgconvert
_comp_cmd_vgcfgbackup()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[f]*)'
# shellcheck disable=SC2254
case $prev in
--file | -${noargopts}f)
_comp_compgen_filedir
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__volumegroups
fi
} &&
complete -F _comp_cmd_vgcfgbackup vgcfgbackup
_comp_cmd_vgcfgrestore()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[fMn]*)'
# shellcheck disable=SC2254
case $prev in
--file | -${noargopts}f)
_comp_compgen_filedir
return
;;
--metadatatype | -${noargopts}M)
_comp_compgen -- -W '1 2'
return
;;
--name | -${noargopts}n)
_comp_cmd_lvm__volumegroups
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__volumegroups
fi
} &&
complete -F _comp_cmd_vgcfgrestore vgcfgrestore
_comp_cmd_vgmerge()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[A]*)'
# shellcheck disable=SC2254
case $prev in
--autobackup | -${noargopts}A)
_comp_compgen -- -W 'y n'
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__volumegroups
fi
} &&
complete -F _comp_cmd_vgmerge vgmerge
_comp_cmd_vgsplit()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[AM]*)'
# shellcheck disable=SC2254
case $prev in
--autobackup | -${noargopts}A)
_comp_compgen -- -W 'y n'
return
;;
--metadatatype | -${noargopts}M)
_comp_compgen -- -W '1 2'
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
local REPLY
_comp_cmd_lvm__count_args '@(-A|--autobackup|-M|--metadatatype)'
if ((REPLY < 2)); then
_comp_cmd_lvm__volumegroups
else
_comp_cmd_lvm__physicalvolumes
fi
fi
} &&
complete -F _comp_cmd_vgsplit vgsplit
_comp_cmd_vgmknodes()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__volumegroups
fi
} &&
complete -F _comp_cmd_vgmknodes vgmknodes
_comp_cmd_lvscan()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
fi
} &&
complete -F _comp_cmd_lvscan lvscan
_comp_cmd_lvs()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[oO]*)'
# shellcheck disable=SC2254
case $prev in
--options | --sort | -${noargopts}[oO])
_comp_compgen -- -W 'lv_uuid lv_name lv_attr lv_minor lv_size
seg_count origin snap_percent segtype stripes stripesize
chunksize seg_start seg_size'
return
;;
--units)
_comp_cmd_lvm__units
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__logicalvolumes
fi
} &&
complete -F _comp_cmd_lvs lvs
_comp_cmd_lvdisplay()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
case $prev in
--units)
_comp_cmd_lvm__units
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__logicalvolumes
fi
} &&
complete -F _comp_cmd_lvdisplay lvdisplay
_comp_cmd_lvchange()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[aACMp]*)'
# shellcheck disable=SC2254
case $prev in
--available | --autobackup | --contiguous | --persistent | -${noargopts}[aACM])
_comp_compgen -- -W 'y n'
return
;;
--permission | -${noargopts}p)
_comp_compgen -- -W 'r rw'
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__logicalvolumes
fi
} &&
complete -F _comp_cmd_lvchange lvchange
_comp_cmd_lvcreate()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[ACMZLpn]*)'
# shellcheck disable=SC2254
case $prev in
--autobackup | --contiguous | --persistent | --zero | -${noargopts}[ACMZ])
_comp_compgen -- -W 'y n'
return
;;
--size | -${noargopts}L)
_comp_cmd_lvm__sizes
return
;;
--permission | -${noargopts}p)
_comp_compgen -- -W 'r rw'
return
;;
--name | -${noargopts}n)
_comp_cmd_lvm__logicalvolumes
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
local REPLY
_comp_cmd_lvm__count_args '@(-A|-C|-M|-Z|--autobackup|--contiguous|--persistent|--zero|-L|--size|-p|--permission|-n|--name)'
if ((REPLY == 0)); then
_comp_cmd_lvm__volumegroups
else
_comp_cmd_lvm__physicalvolumes
fi
fi
} &&
complete -F _comp_cmd_lvcreate lvcreate
_comp_cmd_lvremove()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[A]*)'
# shellcheck disable=SC2254
case $prev in
--autobackup | -${noargopts}A)
_comp_compgen -- -W 'y n'
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__logicalvolumes
fi
} &&
complete -F _comp_cmd_lvremove lvremove
_comp_cmd_lvrename()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[A]*)'
# shellcheck disable=SC2254
case $prev in
--autobackup | -${noargopts}A)
_comp_compgen -- -W 'y n'
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__logicalvolumes
fi
} &&
complete -F _comp_cmd_lvrename lvrename
_comp_cmd_lvreduce()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[AL]*)'
# shellcheck disable=SC2254
case $prev in
--autobackup | -${noargopts}A)
_comp_compgen -- -W 'y n'
return
;;
--size | -${noargopts}L)
_comp_cmd_lvm__sizes
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
_comp_cmd_lvm__logicalvolumes
fi
} &&
complete -F _comp_cmd_lvreduce lvreduce
_comp_cmd_lvresize()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[AL]*)'
# shellcheck disable=SC2254
case $prev in
--autobackup | -${noargopts}A)
_comp_compgen -- -W 'y n'
return
;;
--size | -${noargopts}L)
_comp_cmd_lvm__sizes
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
local REPLY
_comp_cmd_lvm__count_args '@(-A|--autobackup|-L|--size)'
if ((REPLY == 0)); then
_comp_cmd_lvm__logicalvolumes
else
_comp_cmd_lvm__physicalvolumes
fi
fi
} &&
complete -F _comp_cmd_lvresize lvresize
_comp_cmd_lvextend()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[AL]*)'
# shellcheck disable=SC2254
case $prev in
--autobackup | -${noargopts}A)
_comp_compgen -- -W 'y n'
return
;;
--size | -${noargopts}L)
_comp_cmd_lvm__sizes
return
;;
esac
if [[ $cur == -* ]]; then
_comp_compgen_usage -- --help
else
local REPLY
_comp_cmd_lvm__count_args '@(-A|--autobackup|-L|--size)'
if ((REPLY == 0)); then
_comp_cmd_lvm__logicalvolumes
else
_comp_cmd_lvm__physicalvolumes
fi
fi
} &&
complete -F _comp_cmd_lvextend lvextend
_comp_cmd_lvm()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
if ((cword == 1)); then
_comp_compgen -- -W 'dumpconfig help lvchange lvcreate lvdisplay
lvextend lvmchange lvmdiskscan lvmsadc lvmsar lvreduce lvremove
lvrename lvresize lvs lvscan pvchange pvcreate pvdata pvdisplay
pvmove pvremove pvresize pvs pvscan vgcfgbackup vgcfgrestore
vgchange vgck vgconvert vgcreate vgdisplay vgexport vgextend
vgimport vgmerge vgmknodes vgreduce vgremove vgrename vgs vgscan
vgsplit version'
else
case "${words[1]}" in
pvchange | pvcreate | pvdisplay | pvmove | pvremove | pvresize | pvs | pvscan | \
vgcfgbackup | vgcfgrestore | vgchange | vgck | vgconvert | vgcreate | \
vgdisplay | vgexport | vgextend | vgimport | vgmerge | vgmknodes | vgreduce | \
vgremove | vgrename | vgs | vgscan | vgsplit | lvchange | lvcreate | lvdisplay | \
lvextend | lvreduce | lvremove | lvrename | lvresize | lvscan)
_comp_command_offset 1
;;
esac
fi
} &&
complete -F _comp_cmd_lvm lvm
# ex: filetype=sh
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| 2to3 | File | 994 B | 0644 |
|
| 7z | File | 3.88 KB | 0644 |
|
| 7za | File | 3.88 KB | 0644 |
|
| 7zr | File | 3.88 KB | 0644 |
|
| 7zz | File | 3.88 KB | 0644 |
|
| 7zzs | File | 3.88 KB | 0644 |
|
| _adb | File | 1.76 KB | 0644 |
|
| _airflow | File | 508 B | 0644 |
|
| _allero | File | 349 B | 0644 |
|
| _alp | File | 349 B | 0644 |
|
| _ansible | File | 508 B | 0644 |
|
| _ansible-config | File | 508 B | 0644 |
|
| _ansible-console | File | 508 B | 0644 |
|
| _ansible-doc | File | 508 B | 0644 |
|
| _ansible-galaxy | File | 508 B | 0644 |
|
| _ansible-inventory | File | 508 B | 0644 |
|
| _ansible-playbook | File | 508 B | 0644 |
|
| _ansible-pull | File | 508 B | 0644 |
|
| _ansible-vault | File | 508 B | 0644 |
|
| _apko | File | 349 B | 0644 |
|
| _aqua | File | 349 B | 0644 |
|
| _arduino-cli | File | 349 B | 0644 |
|
| _argc | File | 292 B | 0644 |
|
| _argo | File | 349 B | 0644 |
|
| _atlas | File | 349 B | 0644 |
|
| _atmos | File | 349 B | 0644 |
|
| _bao | File | 298 B | 0644 |
|
| _bashbot | File | 349 B | 0644 |
|
| _black | File | 494 B | 0644 |
|
| _blackd | File | 494 B | 0644 |
|
| _bosh | File | 349 B | 0644 |
|
| _buf | File | 349 B | 0644 |
|
| _caddy | File | 349 B | 0644 |
|
| _cal | File | 872 B | 0644 |
|
| _cargo | File | 372 B | 0644 |
|
| _chamber | File | 349 B | 0644 |
|
| _changie | File | 349 B | 0644 |
|
| _chezmoi | File | 349 B | 0644 |
|
| _chfn | File | 238 B | 0644 |
|
| _chsh | File | 1.03 KB | 0644 |
|
| _cilium | File | 349 B | 0644 |
|
| _cloudquery | File | 349 B | 0644 |
|
| _clusterctl | File | 349 B | 0644 |
|
| _cmctl | File | 349 B | 0644 |
|
| _coder | File | 308 B | 0644 |
|
| _colima | File | 349 B | 0644 |
|
| _conda | File | 508 B | 0644 |
|
| _conform | File | 349 B | 0644 |
|
| _conftest | File | 349 B | 0644 |
|
| _constellation | File | 349 B | 0644 |
|
| _consul | File | 298 B | 0644 |
|
| _container-structure-test | File | 349 B | 0644 |
|
| _cosign | File | 349 B | 0644 |
|
| _crane | File | 349 B | 0644 |
|
| _crc | File | 349 B | 0644 |
|
| _crictl | File | 349 B | 0644 |
|
| _ctlptl | File | 349 B | 0644 |
|
| _cue | File | 349 B | 0644 |
|
| _cz | File | 508 B | 0644 |
|
| _dagger | File | 349 B | 0644 |
|
| _dapr | File | 349 B | 0644 |
|
| _dasel | File | 349 B | 0644 |
|
| _datree | File | 349 B | 0644 |
|
| _deck | File | 349 B | 0644 |
|
| _delta | File | 298 B | 0644 |
|
| _deno | File | 278 B | 0644 |
|
| _depot | File | 349 B | 0644 |
|
| _devspace | File | 349 B | 0644 |
|
| _diesel | File | 278 B | 0644 |
|
| _dlv | File | 349 B | 0644 |
|
| _dmesg | File | 856 B | 0644 |
|
| _docker | File | 349 B | 0644 |
|
| _dprint | File | 278 B | 0644 |
|
| _driftctl | File | 349 B | 0644 |
|
| _dyff | File | 349 B | 0644 |
|
| _eject | File | 823 B | 0644 |
|
| _esc | File | 349 B | 0644 |
|
| _flamegraph | File | 282 B | 0644 |
|
| _flask | File | 494 B | 0644 |
|
| _flux | File | 349 B | 0644 |
|
| _furyctl | File | 349 B | 0644 |
|
| _fx | File | 298 B | 0644 |
|
| _gaiacli | File | 266 B | 0644 |
|
| _gaiad | File | 266 B | 0644 |
|
| _gardenctl | File | 349 B | 0644 |
|
| _gcrane | File | 349 B | 0644 |
|
| _gh | File | 292 B | 0644 |
|
| _gh-label | File | 349 B | 0644 |
|
| _ghorg | File | 349 B | 0644 |
|
| _git-bump | File | 349 B | 0644 |
|
| _gitconfig | File | 349 B | 0644 |
|
| _gitleaks | File | 349 B | 0644 |
|
| _gitsign | File | 349 B | 0644 |
|
| _glen | File | 349 B | 0644 |
|
| _glow | File | 349 B | 0644 |
|
| _go-licenses | File | 349 B | 0644 |
|
| _golangci-lint | File | 349 B | 0644 |
|
| _gopass | File | 349 B | 0644 |
|
| _gopherjs | File | 349 B | 0644 |
|
| _goreleaser | File | 349 B | 0644 |
|
| _grype | File | 349 B | 0644 |
|
| _gsctl | File | 294 B | 0644 |
|
| _gup | File | 349 B | 0644 |
|
| _helm | File | 349 B | 0644 |
|
| _helmfile | File | 349 B | 0644 |
|
| _hexdump | File | 672 B | 0644 |
|
| _hostctl | File | 349 B | 0644 |
|
| _httpx | File | 494 B | 0644 |
|
| _hugo | File | 349 B | 0644 |
|
| _hwclock | File | 631 B | 0644 |
|
| _ignite | File | 349 B | 0644 |
|
| _imgpkg | File | 349 B | 0644 |
|
| _incus | File | 349 B | 0644 |
|
| _infracost | File | 292 B | 0644 |
|
| _insmod | File | 664 B | 0644 |
|
| _insmod.static | File | 664 B | 0644 |
|
| _ionice | File | 1.21 KB | 0644 |
|
| _istioctl | File | 349 B | 0644 |
|
| _jj | File | 286 B | 0644 |
|
| _jungle | File | 528 B | 0644 |
|
| _just | File | 282 B | 0644 |
|
| _jwt | File | 349 B | 0644 |
|
| _k0sctl | File | 349 B | 0644 |
|
| _k3d | File | 349 B | 0644 |
|
| _k3s | File | 349 B | 0644 |
|
| _k3sup | File | 349 B | 0644 |
|
| _k6 | File | 349 B | 0644 |
|
| _k9s | File | 349 B | 0644 |
|
| _kafkactl | File | 349 B | 0644 |
|
| _kapp | File | 349 B | 0644 |
|
| _kata-runtime | File | 805 B | 0644 |
|
| _kconf | File | 349 B | 0644 |
|
| _keyring | File | 373 B | 0644 |
|
| _kind | File | 349 B | 0644 |
|
| _kn | File | 349 B | 0644 |
|
| _ko | File | 349 B | 0644 |
|
| _kompose | File | 349 B | 0644 |
|
| _kontena | File | 704 B | 0644 |
|
| _kool | File | 349 B | 0644 |
|
| _kops | File | 349 B | 0644 |
|
| _krane | File | 349 B | 0644 |
|
| _kratos | File | 349 B | 0644 |
|
| _kube-capacity | File | 349 B | 0644 |
|
| _kube-linter | File | 349 B | 0644 |
|
| _kubeadm | File | 349 B | 0644 |
|
| _kubebuilder | File | 349 B | 0644 |
|
| _kubecm | File | 349 B | 0644 |
|
| _kubectl | File | 349 B | 0644 |
|
| _kubectl-argo-rollouts | File | 349 B | 0644 |
|
| _kubectl-kuttl | File | 349 B | 0644 |
|
| _kubelogin | File | 349 B | 0644 |
|
| _kubemqctl | File | 349 B | 0644 |
|
| _kubescape | File | 349 B | 0644 |
|
| _kubesec | File | 349 B | 0644 |
|
| _kubeshark | File | 349 B | 0644 |
|
| _kubespy | File | 349 B | 0644 |
|
| _kustomize | File | 349 B | 0644 |
|
| _kyverno | File | 349 B | 0644 |
|
| _lefthook | File | 349 B | 0644 |
|
| _limactl | File | 349 B | 0644 |
|
| _linkerd | File | 349 B | 0644 |
|
| _look | File | 468 B | 0644 |
|
| _mattermost | File | 349 B | 0644 |
|
| _mdbook | File | 278 B | 0644 |
|
| _melange | File | 349 B | 0644 |
|
| _metalctl | File | 349 B | 0644 |
|
| _minikube | File | 349 B | 0644 |
|
| _minishift | File | 349 B | 0644 |
|
| _mise | File | 349 B | 0644 |
|
| _mmctl | File | 349 B | 0644 |
|
| _mock | File | 2.22 KB | 0644 |
|
| _mockery | File | 349 B | 0644 |
|
| _modinfo | File | 1.64 KB | 0644 |
|
| _modprobe | File | 4.35 KB | 0644 |
|
| _modules | File | 2.55 KB | 0644 |
|
| _moldy | File | 349 B | 0644 |
|
| _mount | File | 2.11 KB | 0644 |
|
| _mount.linux | File | 10.72 KB | 0644 |
|
| _mtr | File | 247 B | 0644 |
|
| _multi-gitter | File | 349 B | 0644 |
|
| _nerdctl | File | 349 B | 0644 |
|
| _newgrp | File | 474 B | 0644 |
|
| _nfpm | File | 349 B | 0644 |
|
| _ngrok | File | 266 B | 0644 |
|
| _nmcli | File | 5.57 KB | 0644 |
|
| _nomad | File | 298 B | 0644 |
|
| _notation | File | 349 B | 0644 |
|
| _nova | File | 349 B | 0644 |
|
| _nox | File | 508 B | 0644 |
|
| _npm | File | 266 B | 0644 |
|
| _nvm | File | 290 B | 0644 |
|
| _oc | File | 349 B | 0644 |
|
| _odo | File | 349 B | 0644 |
|
| _okteto | File | 349 B | 0644 |
|
| _op | File | 349 B | 0644 |
|
| _opa | File | 349 B | 0644 |
|
| _oras | File | 349 B | 0644 |
|
| _ory | File | 349 B | 0644 |
|
| _packer | File | 298 B | 0644 |
|
| _pip | File | 339 B | 0644 |
|
| _pip3 | File | 339 B | 0644 |
|
| _pipenv | File | 494 B | 0644 |
|
| _pitchfork | File | 349 B | 0644 |
|
| _pluto | File | 349 B | 0644 |
|
| _polygon-edge | File | 349 B | 0644 |
|
| _popeye | File | 349 B | 0644 |
|
| _pulumi | File | 349 B | 0644 |
|
| _px | File | 349 B | 0644 |
|
| _qrpc | File | 349 B | 0644 |
|
| _random | File | 349 B | 0644 |
|
| _rclone | File | 349 B | 0644 |
|
| _regal | File | 349 B | 0644 |
|
| _regctl | File | 349 B | 0644 |
|
| _renice | File | 845 B | 0644 |
|
| _repomanage | File | 630 B | 0644 |
|
| _reptyr | File | 559 B | 0644 |
|
| _rfkill | File | 902 B | 0644 |
|
| _rg | File | 294 B | 0644 |
|
| _rmmod | File | 639 B | 0644 |
|
| _rtcwake | File | 854 B | 0644 |
|
| _ruff | File | 306 B | 0644 |
|
| _runuser | File | 241 B | 0644 |
|
| _rustic | File | 278 B | 0644 |
|
| _rustup | File | 235 B | 0644 |
|
| _secret-tool | File | 1.58 KB | 0644 |
|
| _sentry-cli | File | 278 B | 0644 |
|
| _sinker | File | 349 B | 0644 |
|
| _skaffold | File | 349 B | 0644 |
|
| _slackpkg | File | 3.35 KB | 0644 |
|
| _slsa-verifier | File | 349 B | 0644 |
|
| _sops | File | 805 B | 0644 |
|
| _sopstool | File | 266 B | 0644 |
|
| _spacectl | File | 349 B | 0644 |
|
| _ssh-inscribe | File | 349 B | 0644 |
|
| _sshi | File | 349 B | 0644 |
|
| _starship | File | 278 B | 0644 |
|
| _steampipe | File | 349 B | 0644 |
|
| _stern | File | 280 B | 0644 |
|
| _stripe | File | 328 B | 0644 |
|
| _su | File | 910 B | 0644 |
|
| _svn | File | 8.64 KB | 0644 |
|
| _svnadmin | File | 2.24 KB | 0644 |
|
| _svnlook | File | 1.93 KB | 0644 |
|
| _syft | File | 349 B | 0644 |
|
| _talhelper | File | 349 B | 0644 |
|
| _tanzu | File | 349 B | 0644 |
|
| _tanzu-core | File | 349 B | 0644 |
|
| _task | File | 280 B | 0644 |
|
| _tctl | File | 349 B | 0644 |
|
| _tendermint | File | 266 B | 0644 |
|
| _terraform | File | 298 B | 0644 |
|
| _tfctl | File | 349 B | 0644 |
|
| _tilt | File | 349 B | 0644 |
|
| _timoni | File | 349 B | 0644 |
|
| _tkn | File | 349 B | 0644 |
|
| _tkn-pac | File | 349 B | 0644 |
|
| _todoist | File | 805 B | 0644 |
|
| _tofu | File | 298 B | 0644 |
|
| _tokio-console | File | 284 B | 0644 |
|
| _trivy | File | 349 B | 0644 |
|
| _udevadm | File | 2.08 KB | 0644 |
|
| _umount | File | 637 B | 0644 |
|
| _umount.linux | File | 4.52 KB | 0644 |
|
| _upctl | File | 349 B | 0644 |
|
| _uv | File | 306 B | 0644 |
|
| _uvx | File | 310 B | 0644 |
|
| _vacuum | File | 349 B | 0644 |
|
| _vault | File | 298 B | 0644 |
|
| _vela | File | 349 B | 0644 |
|
| _velero | File | 349 B | 0644 |
|
| _venom | File | 349 B | 0644 |
|
| _virtctl | File | 349 B | 0644 |
|
| _wasmer | File | 286 B | 0644 |
|
| _wasmer-headless | File | 286 B | 0644 |
|
| _watchexec | File | 282 B | 0644 |
|
| _write | File | 239 B | 0644 |
|
| _xc | File | 298 B | 0644 |
|
| _xm | File | 7.51 KB | 0644 |
|
| _yq | File | 288 B | 0644 |
|
| _ytt | File | 349 B | 0644 |
|
| _yum | File | 4.56 KB | 0644 |
|
| _zarf | File | 349 B | 0644 |
|
| _zitadel | File | 349 B | 0644 |
|
| _zola | File | 349 B | 0644 |
|
| a2disconf | File | 1.44 KB | 0644 |
|
| a2dismod | File | 1.44 KB | 0644 |
|
| a2dissite | File | 1.44 KB | 0644 |
|
| a2enconf | File | 1.44 KB | 0644 |
|
| a2enmod | File | 1.44 KB | 0644 |
|
| a2ensite | File | 1.44 KB | 0644 |
|
| a2x | File | 1.03 KB | 0644 |
|
| abook | File | 1.2 KB | 0644 |
|
| aclocal | File | 876 B | 0644 |
|
| aclocal-1.10 | File | 876 B | 0644 |
|
| aclocal-1.11 | File | 876 B | 0644 |
|
| aclocal-1.12 | File | 876 B | 0644 |
|
| aclocal-1.13 | File | 876 B | 0644 |
|
| aclocal-1.14 | File | 876 B | 0644 |
|
| aclocal-1.15 | File | 876 B | 0644 |
|
| aclocal-1.16 | File | 876 B | 0644 |
|
| acpi | File | 549 B | 0644 |
|
| add-apt-repository | File | 2.19 KB | 0644 |
|
| add_members | File | 954 B | 0644 |
|
| alias | File | 704 B | 0644 |
|
| alpine | File | 888 B | 0644 |
|
| alternatives | File | 2.83 KB | 0644 |
|
| animate | File | 8.48 KB | 0644 |
|
| ant | File | 2.8 KB | 0644 |
|
| apache2ctl | File | 408 B | 0644 |
|
| appdata-validate | File | 788 B | 0644 |
|
| apport-bug | File | 5.21 KB | 0644 |
|
| apport-cli | File | 5.21 KB | 0644 |
|
| apport-collect | File | 819 B | 0644 |
|
| apport-unpack | File | 433 B | 0644 |
|
| apropos | File | 3.57 KB | 0644 |
|
| apt | File | 7.42 KB | 0644 |
|
| apt-add-repository | File | 2.19 KB | 0644 |
|
| apt-build | File | 1.38 KB | 0644 |
|
| apt-cache | File | 3.36 KB | 0644 |
|
| apt-get | File | 4.22 KB | 0644 |
|
| apt-mark | File | 1.86 KB | 0644 |
|
| aptitude | File | 3.92 KB | 0644 |
|
| aptitude-curses | File | 3.92 KB | 0644 |
|
| arch | File | 1.41 KB | 0644 |
|
| arm-koji | File | 6.57 KB | 0644 |
|
| arp | File | 1.69 KB | 0644 |
|
| arping | File | 637 B | 0644 |
|
| arpspoof | File | 590 B | 0644 |
|
| asciidoc | File | 1.4 KB | 0644 |
|
| asciidoc.py | File | 1.4 KB | 0644 |
|
| aspell | File | 3.33 KB | 0644 |
|
| autoconf | File | 1002 B | 0644 |
|
| autoheader | File | 1.03 KB | 0644 |
|
| automake | File | 894 B | 0644 |
|
| automake-1.10 | File | 894 B | 0644 |
|
| automake-1.11 | File | 894 B | 0644 |
|
| automake-1.12 | File | 894 B | 0644 |
|
| automake-1.13 | File | 894 B | 0644 |
|
| automake-1.14 | File | 894 B | 0644 |
|
| automake-1.15 | File | 894 B | 0644 |
|
| automake-1.16 | File | 894 B | 0644 |
|
| autoreconf | File | 1.03 KB | 0644 |
|
| autorpm | File | 370 B | 0644 |
|
| autoscan | File | 881 B | 0644 |
|
| autossh | File | 19.65 KB | 0644 |
|
| autoupdate | File | 881 B | 0644 |
|
| avahi-browse | File | 1.04 KB | 0644 |
|
| avahi-browse-domains | File | 1.04 KB | 0644 |
|
| avctrl | File | 476 B | 0644 |
|
| b2sum | File | 860 B | 0644 |
|
| badblocks | File | 704 B | 0644 |
|
| bind | File | 807 B | 0644 |
|
| bk | File | 471 B | 0644 |
|
| blkdiscard | File | 698 B | 0644 |
|
| blkid | File | 2.1 KB | 0644 |
|
| blkzone | File | 1014 B | 0644 |
|
| blockdev | File | 789 B | 0644 |
|
| bmake | File | 6 KB | 0644 |
|
| bpftool | File | 43.7 KB | 0644 |
|
| brctl | File | 1.03 KB | 0644 |
|
| bsdtar | File | 21.63 KB | 0644 |
|
| btdownloadcurses.py | File | 1.07 KB | 0644 |
|
| btdownloadgui.py | File | 1.07 KB | 0644 |
|
| btdownloadheadless.py | File | 1.07 KB | 0644 |
|
| btrfs | File | 3.53 KB | 0644 |
|
| busctl | File | 7.89 KB | 0644 |
|
| bwrap | File | 1.19 KB | 0644 |
|
| bzip2 | File | 1.14 KB | 0644 |
|
| c++ | File | 2.5 KB | 0644 |
|
| cancel | File | 560 B | 0644 |
|
| cardctl | File | 398 B | 0644 |
|
| carton | File | 2.31 KB | 0644 |
|
| cc | File | 2.5 KB | 0644 |
|
| ccache | File | 1.08 KB | 0644 |
|
| ccze | File | 1.26 KB | 0644 |
|
| cd | File | 1.65 KB | 0644 |
|
| cdrecord | File | 3.43 KB | 0644 |
|
| cfagent | File | 431 B | 0644 |
|
| cfdisk | File | 608 B | 0644 |
|
| cfrun | File | 1.24 KB | 0644 |
|
| chage | File | 763 B | 0644 |
|
| change_pw | File | 734 B | 0644 |
|
| chcpu | File | 1.49 KB | 0644 |
|
| check_db | File | 551 B | 0644 |
|
| check_perms | File | 339 B | 0644 |
|
| checksec | File | 1.21 KB | 0644 |
|
| chflags | File | 1.66 KB | 0644 |
|
| chgrp | File | 1009 B | 0644 |
|
| chkconfig | File | 931 B | 0644 |
|
| chmem | File | 501 B | 0644 |
|
| chmod | File | 920 B | 0644 |
|
| chown | File | 1.17 KB | 0644 |
|
| chpasswd | File | 775 B | 0644 |
|
| chrome | File | 1.43 KB | 0644 |
|
| chromium | File | 1.43 KB | 0644 |
|
| chromium-browser | File | 1.43 KB | 0644 |
|
| chronyc | File | 1.61 KB | 0644 |
|
| chrpath | File | 639 B | 0644 |
|
| chrt | File | 920 B | 0644 |
|
| ci | File | 916 B | 0644 |
|
| ciptool | File | 9.48 KB | 0644 |
|
| civclient | File | 1.01 KB | 0644 |
|
| civserver | File | 497 B | 0644 |
|
| cksfv | File | 556 B | 0644 |
|
| cleanarch | File | 358 B | 0644 |
|
| clisp | File | 701 B | 0644 |
|
| clone_member | File | 745 B | 0644 |
|
| cloud-init | File | 3.24 KB | 0644 |
|
| clzip | File | 1.28 KB | 0644 |
|
| co | File | 916 B | 0644 |
|
| col | File | 460 B | 0644 |
|
| colcrt | File | 484 B | 0644 |
|
| colormake | File | 6 KB | 0644 |
|
| colormgr | File | 2.41 KB | 0644 |
|
| colrm | File | 509 B | 0644 |
|
| column | File | 1.43 KB | 0644 |
|
| compare | File | 8.48 KB | 0644 |
|
| compgen | File | 1.36 KB | 0644 |
|
| complete | File | 1.36 KB | 0644 |
|
| composite | File | 8.48 KB | 0644 |
|
| config_list | File | 785 B | 0644 |
|
| configure | File | 1.34 KB | 0644 |
|
| conjure | File | 8.48 KB | 0644 |
|
| convert | File | 8.48 KB | 0644 |
|
| cowsay | File | 522 B | 0644 |
|
| cowthink | File | 522 B | 0644 |
|
| cpan2dist | File | 1.2 KB | 0644 |
|
| cpio | File | 2.79 KB | 0644 |
|
| cppcheck | File | 2.63 KB | 0644 |
|
| createdb | File | 4.94 KB | 0644 |
|
| createuser | File | 4.94 KB | 0644 |
|
| crontab | File | 1.22 KB | 0644 |
|
| cryptsetup | File | 3.21 KB | 0644 |
|
| curl | File | 6.21 KB | 0644 |
|
| cvs | File | 12.59 KB | 0644 |
|
| cvsps | File | 1.45 KB | 0644 |
|
| dconf | File | 1.15 KB | 0644 |
|
| dcop | File | 361 B | 0644 |
|
| dd | File | 1.15 KB | 0644 |
|
| debconf | File | 293 B | 0644 |
|
| debconf-show | File | 293 B | 0644 |
|
| declare | File | 1.14 KB | 0644 |
|
| deja-dup | File | 728 B | 0644 |
|
| desktop-file-validate | File | 484 B | 0644 |
|
| devlink | File | 26.76 KB | 0644 |
|
| dfutool | File | 9.48 KB | 0644 |
|
| dhclient | File | 711 B | 0644 |
|
| dict | File | 2.04 KB | 0644 |
|
| display | File | 8.48 KB | 0644 |
|
| dmesg | File | 1.21 KB | 0644 |
|
| dmypy | File | 1.1 KB | 0644 |
|
| dnssec-keygen | File | 1.17 KB | 0644 |
|
| dnsspoof | File | 523 B | 0644 |
|
| dot | File | 1.29 KB | 0644 |
|
| dpkg | File | 5.35 KB | 0644 |
|
| dpkg-deb | File | 5.35 KB | 0644 |
|
| dpkg-query | File | 5.35 KB | 0644 |
|
| dpkg-reconfigure | File | 5.35 KB | 0644 |
|
| dpkg-source | File | 3.11 KB | 0644 |
|
| dropdb | File | 4.94 KB | 0644 |
|
| dropuser | File | 4.94 KB | 0644 |
|
| dselect | File | 610 B | 0644 |
|
| dsniff | File | 574 B | 0644 |
|
| dumpdb | File | 390 B | 0644 |
|
| dumpe2fs | File | 538 B | 0644 |
|
| e2freefrag | File | 470 B | 0644 |
|
| e2label | File | 334 B | 0644 |
|
| eatmydata | File | 31 B | 0644 |
|
| ebtables | File | 3.75 KB | 0644 |
|
| ecryptfs-migrate-home | File | 480 B | 0644 |
|
| edquota | File | 4.02 KB | 0644 |
|
| eject | File | 1.22 KB | 0644 |
|
| env | File | 1.53 KB | 0644 |
|
| eog | File | 695 B | 0644 |
|
| ether-wake | File | 598 B | 0644 |
|
| etherwake | File | 598 B | 0644 |
|
| ethtool | File | 24.61 KB | 0644 |
|
| evince | File | 1.02 KB | 0644 |
|
| explodepkg | File | 152 B | 0644 |
|
| export | File | 1.6 KB | 0644 |
|
| f77 | File | 2.5 KB | 0644 |
|
| f95 | File | 2.5 KB | 0644 |
|
| faillog | File | 718 B | 0644 |
|
| fallocate | File | 721 B | 0644 |
|
| fbgs | File | 1.52 KB | 0644 |
|
| fbi | File | 1.76 KB | 0644 |
|
| fdisk | File | 1.87 KB | 0644 |
|
| feh | File | 4.2 KB | 0644 |
|
| file | File | 852 B | 0644 |
|
| file-roller | File | 1.28 KB | 0644 |
|
| filebucket | File | 10.13 KB | 0644 |
|
| filefrag | File | 360 B | 0644 |
|
| filesnarf | File | 457 B | 0644 |
|
| find | File | 3.81 KB | 0644 |
|
| find_member | File | 730 B | 0644 |
|
| findfs | File | 695 B | 0644 |
|
| findmnt | File | 3.15 KB | 0644 |
|
| fio | File | 4.27 KB | 0644 |
|
| firefox | File | 1.48 KB | 0644 |
|
| firefox-esr | File | 1.48 KB | 0644 |
|
| flake8 | File | 1.12 KB | 0644 |
|
| flock | File | 874 B | 0644 |
|
| fprintd-delete | File | 316 B | 0644 |
|
| fprintd-enroll | File | 1.01 KB | 0644 |
|
| fprintd-list | File | 316 B | 0644 |
|
| fprintd-verify | File | 1.01 KB | 0644 |
|
| freeciv | File | 1.01 KB | 0644 |
|
| freeciv-gtk2 | File | 1.01 KB | 0644 |
|
| freeciv-gtk3 | File | 1.01 KB | 0644 |
|
| freeciv-sdl | File | 1.01 KB | 0644 |
|
| freeciv-server | File | 497 B | 0644 |
|
| freeciv-xaw | File | 1.01 KB | 0644 |
|
| fsck | File | 770 B | 0644 |
|
| fsfreeze | File | 524 B | 0644 |
|
| fstrim | File | 755 B | 0644 |
|
| function | File | 461 B | 0644 |
|
| fusermount | File | 626 B | 0644 |
|
| fwupdmgr | File | 9.41 KB | 0644 |
|
| fwupdtool | File | 8.04 KB | 0644 |
|
| g++ | File | 2.5 KB | 0644 |
|
| g++-5 | File | 2.5 KB | 0644 |
|
| g++-6 | File | 2.5 KB | 0644 |
|
| g++-7 | File | 2.5 KB | 0644 |
|
| g++-8 | File | 2.5 KB | 0644 |
|
| g4 | File | 1.33 KB | 0644 |
|
| g77 | File | 2.5 KB | 0644 |
|
| g95 | File | 2.5 KB | 0644 |
|
| gapplication | File | 2.31 KB | 0644 |
|
| gcc | File | 2.5 KB | 0644 |
|
| gcc-5 | File | 2.5 KB | 0644 |
|
| gcc-6 | File | 2.5 KB | 0644 |
|
| gcc-7 | File | 2.5 KB | 0644 |
|
| gcc-8 | File | 2.5 KB | 0644 |
|
| gccgo | File | 2.5 KB | 0644 |
|
| gccgo-5 | File | 2.5 KB | 0644 |
|
| gccgo-6 | File | 2.5 KB | 0644 |
|
| gccgo-7 | File | 2.5 KB | 0644 |
|
| gccgo-8 | File | 2.5 KB | 0644 |
|
| gcj | File | 2.5 KB | 0644 |
|
| gcl | File | 648 B | 0644 |
|
| gdb | File | 1.67 KB | 0644 |
|
| gdbus | File | 1.77 KB | 0644 |
|
| gdctl | File | 2.58 KB | 0644 |
|
| genaliases | File | 342 B | 0644 |
|
| gendiff | File | 316 B | 0644 |
|
| genisoimage | File | 911 B | 0644 |
|
| geoiplookup | File | 717 B | 0644 |
|
| geoiplookup6 | File | 717 B | 0644 |
|
| getconf | File | 837 B | 0644 |
|
| getent | File | 1.99 KB | 0644 |
|
| getopt | File | 815 B | 0644 |
|
| gfortran | File | 2.5 KB | 0644 |
|
| gfortran-5 | File | 2.5 KB | 0644 |
|
| gfortran-6 | File | 2.5 KB | 0644 |
|
| gfortran-7 | File | 2.5 KB | 0644 |
|
| gfortran-8 | File | 2.5 KB | 0644 |
|
| gio | File | 3.93 KB | 0644 |
|
| gkrellm | File | 989 B | 0644 |
|
| gkrellm2 | File | 989 B | 0644 |
|
| gm | File | 923 B | 0644 |
|
| gmake | File | 6 KB | 0644 |
|
| gmplayer | File | 11.15 KB | 0644 |
|
| gnatmake | File | 1.02 KB | 0644 |
|
| gnokii | File | 6.69 KB | 0644 |
|
| gnome-control-center | File | 1.67 KB | 0644 |
|
| gnome-extensions | File | 2.01 KB | 0644 |
|
| gnome-mplayer | File | 959 B | 0644 |
|
| gnome-screenshot | File | 907 B | 0644 |
|
| gnumake | File | 6 KB | 0644 |
|
| google-chrome | File | 1.43 KB | 0644 |
|
| google-chrome-stable | File | 1.43 KB | 0644 |
|
| gpasswd | File | 643 B | 0644 |
|
| gpc | File | 2.5 KB | 0644 |
|
| gpg | File | 1.99 KB | 0644 |
|
| gpg2 | File | 1.55 KB | 0644 |
|
| gpgv | File | 1.16 KB | 0644 |
|
| gpgv2 | File | 1.16 KB | 0644 |
|
| gphoto2 | File | 1.37 KB | 0644 |
|
| gprof | File | 1.34 KB | 0644 |
|
| gresource | File | 2.14 KB | 0644 |
|
| groupadd | File | 705 B | 0644 |
|
| groupdel | File | 532 B | 0644 |
|
| groupmems | File | 589 B | 0644 |
|
| groupmod | File | 760 B | 0644 |
|
| growisofs | File | 923 B | 0644 |
|
| grpck | File | 568 B | 0644 |
|
| grub | File | 10.68 KB | 0644 |
|
| grub-editenv | File | 10.68 KB | 0644 |
|
| grub-install | File | 10.68 KB | 0644 |
|
| grub-mkconfig | File | 10.68 KB | 0644 |
|
| grub-mkfont | File | 10.68 KB | 0644 |
|
| grub-mkimage | File | 10.68 KB | 0644 |
|
| grub-mkpasswd-pbkdf2 | File | 10.68 KB | 0644 |
|
| grub-mkrescue | File | 10.68 KB | 0644 |
|
| grub-probe | File | 10.68 KB | 0644 |
|
| grub-reboot | File | 10.68 KB | 0644 |
|
| grub-script-check | File | 10.68 KB | 0644 |
|
| grub-set-default | File | 10.68 KB | 0644 |
|
| gsettings | File | 4.12 KB | 0644 |
|
| gssdp-device-sniffer | File | 953 B | 0644 |
|
| gssdp-discover | File | 953 B | 0644 |
|
| gst-inspect-1.0 | File | 2.54 KB | 0644 |
|
| gst-launch-1.0 | File | 3.4 KB | 0644 |
|
| gtar | File | 21.63 KB | 0644 |
|
| gzip | File | 1.31 KB | 0644 |
|
| hardlink | File | 1.37 KB | 0644 |
|
| hash | File | 545 B | 0644 |
|
| hciattach | File | 9.48 KB | 0644 |
|
| hciconfig | File | 9.48 KB | 0644 |
|
| hcitool | File | 9.48 KB | 0644 |
|
| hd | File | 672 B | 0644 |
|
| hddtemp | File | 1.02 KB | 0644 |
|
| help | File | 427 B | 0644 |
|
| hexdump | File | 1 KB | 0644 |
|
| hid2hci | File | 354 B | 0644 |
|
| host | File | 2.63 KB | 0644 |
|
| hostname | File | 604 B | 0644 |
|
| hostnamectl | File | 2.71 KB | 0644 |
|
| hping | File | 975 B | 0644 |
|
| hping2 | File | 975 B | 0644 |
|
| hping3 | File | 975 B | 0644 |
|
| htop | File | 871 B | 0644 |
|
| htpasswd | File | 905 B | 0644 |
|
| hunspell | File | 964 B | 0644 |
|
| ibus.bash | File | 3.33 KB | 0644 |
|
| iceweasel | File | 1.48 KB | 0644 |
|
| iconv | File | 1.27 KB | 0644 |
|
| id | File | 399 B | 0644 |
|
| identify | File | 8.48 KB | 0644 |
|
| idn | File | 735 B | 0644 |
|
| ifdown | File | 974 B | 0644 |
|
| ifquery | File | 974 B | 0644 |
|
| ifstat | File | 2.08 KB | 0644 |
|
| ifstatus | File | 974 B | 0644 |
|
| iftop | File | 663 B | 0644 |
|
| ifup | File | 974 B | 0644 |
|
| import | File | 8.48 KB | 0644 |
|
| influx | File | 855 B | 0644 |
|
| info | File | 2.07 KB | 0644 |
|
| inject | File | 726 B | 0644 |
|
| inotifywait | File | 1.37 KB | 0644 |
|
| inotifywatch | File | 1.37 KB | 0644 |
|
| installpkg | File | 774 B | 0644 |
|
| interdiff | File | 873 B | 0644 |
|
| invoke-rc.d | File | 1.21 KB | 0644 |
|
| ionice | File | 1.13 KB | 0644 |
|
| ip | File | 21.6 KB | 0644 |
|
| ipcalc | File | 539 B | 0644 |
|
| ipcmk | File | 576 B | 0644 |
|
| ipcrm | File | 1.39 KB | 0644 |
|
| ipcs | File | 514 B | 0644 |
|
| iperf | File | 3.12 KB | 0644 |
|
| iperf3 | File | 3.12 KB | 0644 |
|
| ipmitool | File | 5.24 KB | 0644 |
|
| ipsec | File | 3 KB | 0644 |
|
| iptables | File | 2.06 KB | 0644 |
|
| ipv6calc | File | 1.1 KB | 0644 |
|
| iscsiadm | File | 1.92 KB | 0644 |
|
| isort | File | 1.31 KB | 0644 |
|
| isosize | File | 529 B | 0644 |
|
| isql | File | 429 B | 0644 |
|
| iwconfig | File | 2.58 KB | 0644 |
|
| iwlist | File | 624 B | 0644 |
|
| iwpriv | File | 710 B | 0644 |
|
| iwspy | File | 495 B | 0644 |
|
| jar | File | 556 B | 0644 |
|
| jarsigner | File | 1.67 KB | 0644 |
|
| java | File | 9.67 KB | 0644 |
|
| javac | File | 9.67 KB | 0644 |
|
| javadoc | File | 9.67 KB | 0644 |
|
| javaws | File | 833 B | 0644 |
|
| journalctl | File | 6.41 KB | 0644 |
|
| jpegoptim | File | 993 B | 0644 |
|
| jps | File | 637 B | 0644 |
|
| jq | File | 2.46 KB | 0644 |
|
| jshint | File | 908 B | 0644 |
|
| json_xs | File | 858 B | 0644 |
|
| jsonschema | File | 672 B | 0644 |
|
| k3b | File | 1.23 KB | 0644 |
|
| kcov | File | 1.74 KB | 0644 |
|
| kernel-install | File | 1.67 KB | 0644 |
|
| kill | File | 704 B | 0644 |
|
| killall | File | 941 B | 0644 |
|
| kmod | File | 2.54 KB | 0644 |
|
| koji | File | 6.57 KB | 0644 |
|
| kplayer | File | 11.15 KB | 0644 |
|
| ktutil | File | 3.09 KB | 0644 |
|
| l2ping | File | 9.48 KB | 0644 |
|
| larch | File | 1.94 KB | 0644 |
|
| lastlog | File | 661 B | 0644 |
|
| lbzip2 | File | 1.14 KB | 0644 |
|
| ldapadd | File | 4.95 KB | 0644 |
|
| ldapcompare | File | 4.95 KB | 0644 |
|
| ldapdelete | File | 4.95 KB | 0644 |
|
| ldapmodify | File | 4.95 KB | 0644 |
|
| ldapmodrdn | File | 4.95 KB | 0644 |
|
| ldappasswd | File | 4.95 KB | 0644 |
|
| ldapsearch | File | 4.95 KB | 0644 |
|
| ldapvi | File | 1.29 KB | 0644 |
|
| ldapwhoami | File | 4.95 KB | 0644 |
|
| ldattach | File | 1.44 KB | 0644 |
|
| lftp | File | 710 B | 0644 |
|
| lftpget | File | 326 B | 0644 |
|
| libreoffice | File | 6.53 KB | 0644 |
|
| lilo | File | 1.64 KB | 0644 |
|
| links | File | 3.22 KB | 0644 |
|
| links2 | File | 3.22 KB | 0644 |
|
| lintian | File | 5.53 KB | 0644 |
|
| lintian-info | File | 5.53 KB | 0644 |
|
| lisp | File | 664 B | 0644 |
|
| list_admins | File | 562 B | 0644 |
|
| list_lists | File | 607 B | 0644 |
|
| list_members | File | 1008 B | 0644 |
|
| list_owners | File | 574 B | 0644 |
|
| locale-gen | File | 725 B | 0644 |
|
| localectl | File | 3.28 KB | 0644 |
|
| logger | File | 1.64 KB | 0644 |
|
| loginctl | File | 4.18 KB | 0644 |
|
| look | File | 683 B | 0644 |
|
| losetup | File | 1.7 KB | 0644 |
|
| lpq | File | 594 B | 0644 |
|
| lpr | File | 889 B | 0644 |
|
| lrzip | File | 1.35 KB | 0644 |
|
| lsblk | File | 2.26 KB | 0644 |
|
| lscpu | File | 1.04 KB | 0644 |
|
| lsipc | File | 1.28 KB | 0644 |
|
| lslocks | File | 1.08 KB | 0644 |
|
| lslogins | File | 1.71 KB | 0644 |
|
| lsmem | File | 1.04 KB | 0644 |
|
| lsns | File | 1.18 KB | 0644 |
|
| lsof | File | 1.41 KB | 0644 |
|
| lsscsi | File | 698 B | 0644 |
|
| lsusb | File | 494 B | 0644 |
|
| lua | File | 462 B | 0644 |
|
| lua5.0 | File | 462 B | 0644 |
|
| lua5.1 | File | 462 B | 0644 |
|
| lua5.2 | File | 462 B | 0644 |
|
| lua5.3 | File | 462 B | 0644 |
|
| lua5.4 | File | 462 B | 0644 |
|
| lua50 | File | 462 B | 0644 |
|
| lua51 | File | 462 B | 0644 |
|
| lua52 | File | 462 B | 0644 |
|
| lua53 | File | 462 B | 0644 |
|
| lua54 | File | 462 B | 0644 |
|
| luac | File | 523 B | 0644 |
|
| luac5.0 | File | 523 B | 0644 |
|
| luac5.1 | File | 523 B | 0644 |
|
| luac5.2 | File | 523 B | 0644 |
|
| luac5.3 | File | 523 B | 0644 |
|
| luac5.4 | File | 523 B | 0644 |
|
| luac50 | File | 523 B | 0644 |
|
| luac51 | File | 523 B | 0644 |
|
| luac52 | File | 523 B | 0644 |
|
| luac53 | File | 523 B | 0644 |
|
| luac54 | File | 523 B | 0644 |
|
| luseradd | File | 1.16 KB | 0644 |
|
| luserdel | File | 458 B | 0644 |
|
| lusermod | File | 1.16 KB | 0644 |
|
| lvchange | File | 21.02 KB | 0644 |
|
| lvcreate | File | 21.02 KB | 0644 |
|
| lvdisplay | File | 21.02 KB | 0644 |
|
| lvextend | File | 21.02 KB | 0644 |
|
| lvm | File | 21.02 KB | 0644 |
|
| lvmdiskscan | File | 21.02 KB | 0644 |
|
| lvreduce | File | 21.02 KB | 0644 |
|
| lvremove | File | 21.02 KB | 0644 |
|
| lvrename | File | 21.02 KB | 0644 |
|
| lvresize | File | 21.02 KB | 0644 |
|
| lvs | File | 21.02 KB | 0644 |
|
| lvscan | File | 21.02 KB | 0644 |
|
| lz4 | File | 1.2 KB | 0644 |
|
| lz4c | File | 1.2 KB | 0644 |
|
| lzip | File | 1.28 KB | 0644 |
|
| lzma | File | 927 B | 0644 |
|
| lzop | File | 1.5 KB | 0644 |
|
| macof | File | 434 B | 0644 |
|
| mailmanctl | File | 467 B | 0644 |
|
| mailsnarf | File | 457 B | 0644 |
|
| make | File | 6 KB | 0644 |
|
| makepkg | File | 1.03 KB | 0644 |
|
| man | File | 3.57 KB | 0644 |
|
| mbimcli | File | 2.59 KB | 0644 |
|
| mc | File | 814 B | 0644 |
|
| mcookie | File | 599 B | 0644 |
|
| mcrypt | File | 1.76 KB | 0644 |
|
| md5sum | File | 860 B | 0644 |
|
| mdadm | File | 4.52 KB | 0644 |
|
| mdecrypt | File | 1.76 KB | 0644 |
|
| mdtool | File | 1.92 KB | 0644 |
|
| medusa | File | 695 B | 0644 |
|
| mencoder | File | 11.15 KB | 0644 |
|
| mfiutil | File | 3.87 KB | 0644 |
|
| micropython | File | 3.28 KB | 0644 |
|
| mii-diag | File | 663 B | 0644 |
|
| mii-tool | File | 925 B | 0644 |
|
| minicom | File | 1.1 KB | 0644 |
|
| mkfs | File | 659 B | 0644 |
|
| mkinitrd | File | 1.28 KB | 0644 |
|
| mkisofs | File | 911 B | 0644 |
|
| mkswap | File | 1.04 KB | 0644 |
|
| mktemp | File | 758 B | 0644 |
|
| mmcli | File | 5.51 KB | 0644 |
|
| mmsitepass | File | 348 B | 0644 |
|
| mogrify | File | 8.48 KB | 0644 |
|
| mokutil | File | 1.16 KB | 0644 |
|
| monodevelop | File | 472 B | 0644 |
|
| montage | File | 8.48 KB | 0644 |
|
| more | File | 752 B | 0644 |
|
| mount | File | 2.06 KB | 0644 |
|
| mountpoint | File | 498 B | 0644 |
|
| mozilla-firefox | File | 1.48 KB | 0644 |
|
| mplayer | File | 11.15 KB | 0644 |
|
| mplayer2 | File | 11.15 KB | 0644 |
|
| mr | File | 2.81 KB | 0644 |
|
| mrsasutil | File | 3.87 KB | 0644 |
|
| msgsnarf | File | 457 B | 0644 |
|
| msynctool | File | 1.23 KB | 0644 |
|
| mtr | File | 1.9 KB | 0644 |
|
| mtx | File | 1.15 KB | 0644 |
|
| munin-node-configure | File | 767 B | 0644 |
|
| munin-run | File | 641 B | 0644 |
|
| munin-update | File | 693 B | 0644 |
|
| munindoc | File | 333 B | 0644 |
|
| mussh | File | 1.15 KB | 0644 |
|
| mutt | File | 5.05 KB | 0644 |
|
| muttng | File | 5.05 KB | 0644 |
|
| mypy | File | 1.6 KB | 0644 |
|
| mysql | File | 2.97 KB | 0644 |
|
| mysqladmin | File | 1.88 KB | 0644 |
|
| namei | File | 500 B | 0644 |
|
| nc | File | 1.16 KB | 0644 |
|
| ncal | File | 872 B | 0644 |
|
| ncftp | File | 614 B | 0644 |
|
| neomutt | File | 5.05 KB | 0644 |
|
| nethogs | File | 566 B | 0644 |
|
| netplan | File | 2.76 KB | 0644 |
|
| networkctl | File | 3.12 KB | 0644 |
|
| newgrp | File | 610 B | 0644 |
|
| newlist | File | 754 B | 0644 |
|
| newusers | File | 666 B | 0644 |
|
| ngrep | File | 858 B | 0644 |
|
| nmap | File | 1.65 KB | 0644 |
|
| nmcli | File | 3.75 KB | 0644 |
|
| nproc | File | 510 B | 0644 |
|
| nsenter | File | 1.24 KB | 0644 |
|
| nslookup | File | 2.63 KB | 0644 |
|
| nsupdate | File | 868 B | 0644 |
|
| ntpdate | File | 725 B | 0644 |
|
| oggdec | File | 974 B | 0644 |
|
| oomctl | File | 1.64 KB | 0644 |
|
| openssl | File | 4.15 KB | 0644 |
|
| openvpn | File | 553 B | 0644 |
|
| opera | File | 1.38 KB | 0644 |
|
| optipng | File | 1.09 KB | 0644 |
|
| p4 | File | 1.33 KB | 0644 |
|
| pack200 | File | 2.22 KB | 0644 |
|
| partx | File | 1.27 KB | 0644 |
|
| passwd | File | 625 B | 0644 |
|
| patch | File | 1.85 KB | 0644 |
|
| pbzip2 | File | 1.14 KB | 0644 |
|
| pccardctl | File | 398 B | 0644 |
|
| pdftoppm | File | 864 B | 0644 |
|
| pdftotext | File | 973 B | 0644 |
|
| pdlzip | File | 1.28 KB | 0644 |
|
| perl | File | 4.22 KB | 0644 |
|
| perlcritic | File | 1.21 KB | 0644 |
|
| perldoc | File | 4.22 KB | 0644 |
|
| perltidy | File | 1.88 KB | 0644 |
|
| pgrep | File | 1.66 KB | 0644 |
|
| phing | File | 2.8 KB | 0644 |
|
| pidof | File | 633 B | 0644 |
|
| pigz | File | 1.31 KB | 0644 |
|
| pine | File | 888 B | 0644 |
|
| pinfo | File | 2.07 KB | 0644 |
|
| ping | File | 1.93 KB | 0644 |
|
| ping4 | File | 1.93 KB | 0644 |
|
| ping6 | File | 1.93 KB | 0644 |
|
| pivot_root | File | 387 B | 0644 |
|
| pkcon | File | 2.67 KB | 0644 |
|
| pkg-config | File | 1.29 KB | 0644 |
|
| pkg-get | File | 2.14 KB | 0644 |
|
| pkgadd | File | 1.76 KB | 0644 |
|
| pkgconf | File | 1.29 KB | 0644 |
|
| pkgrm | File | 1.07 KB | 0644 |
|
| pkgtool | File | 872 B | 0644 |
|
| pkill | File | 1.66 KB | 0644 |
|
| plague-client | File | 429 B | 0644 |
|
| plzip | File | 1.28 KB | 0644 |
|
| pm-hibernate | File | 353 B | 0644 |
|
| pm-is-supported | File | 346 B | 0644 |
|
| pm-powersave | File | 302 B | 0644 |
|
| pm-suspend | File | 353 B | 0644 |
|
| pm-suspend-hybrid | File | 353 B | 0644 |
|
| pmake | File | 6 KB | 0644 |
|
| pngfix | File | 819 B | 0644 |
|
| poff | File | 688 B | 0644 |
|
| pon | File | 440 B | 0644 |
|
| postalias | File | 944 B | 0644 |
|
| postcat | File | 757 B | 0644 |
|
| postconf | File | 834 B | 0644 |
|
| postfix | File | 676 B | 0644 |
|
| postmap | File | 944 B | 0644 |
|
| postsuper | File | 1.08 KB | 0644 |
|
| povray | File | 2.33 KB | 0644 |
|
| powerprofilesctl | File | 6.82 KB | 0644 |
|
| ppc-koji | File | 6.57 KB | 0644 |
|
| prelink | File | 1014 B | 0644 |
|
| printenv | File | 447 B | 0644 |
|
| prlimit | File | 1.3 KB | 0644 |
|
| pro | File | 1.95 KB | 0644 |
|
| protoc | File | 1.47 KB | 0644 |
|
| ps | File | 1.92 KB | 0644 |
|
| psql | File | 4.94 KB | 0644 |
|
| puppet | File | 10.13 KB | 0644 |
|
| puppetca | File | 10.13 KB | 0644 |
|
| puppetd | File | 10.13 KB | 0644 |
|
| puppetdoc | File | 10.13 KB | 0644 |
|
| puppetmasterd | File | 10.13 KB | 0644 |
|
| puppetqd | File | 10.13 KB | 0644 |
|
| puppetrun | File | 10.13 KB | 0644 |
|
| pushd | File | 1.65 KB | 0644 |
|
| pv | File | 904 B | 0644 |
|
| pvchange | File | 21.02 KB | 0644 |
|
| pvcreate | File | 21.02 KB | 0644 |
|
| pvdisplay | File | 21.02 KB | 0644 |
|
| pvmove | File | 21.02 KB | 0644 |
|
| pvremove | File | 21.02 KB | 0644 |
|
| pvs | File | 21.02 KB | 0644 |
|
| pvscan | File | 21.02 KB | 0644 |
|
| pwck | File | 370 B | 0644 |
|
| pwd | File | 368 B | 0644 |
|
| pwdx | File | 481 B | 0644 |
|
| pwgen | File | 708 B | 0644 |
|
| pxz | File | 1.6 KB | 0644 |
|
| py.test | File | 4.35 KB | 0644 |
|
| py.test-2 | File | 4.35 KB | 0644 |
|
| py.test-3 | File | 4.35 KB | 0644 |
|
| pycodestyle | File | 754 B | 0644 |
|
| pydoc | File | 1.09 KB | 0644 |
|
| pydoc3 | File | 1.09 KB | 0644 |
|
| pydocstyle | File | 860 B | 0644 |
|
| pyflakes | File | 457 B | 0644 |
|
| pygmentize | File | 1.03 KB | 0644 |
|
| pylint | File | 4.31 KB | 0644 |
|
| pylint-2 | File | 4.31 KB | 0644 |
|
| pylint-3 | File | 4.31 KB | 0644 |
|
| pypy | File | 3.28 KB | 0644 |
|
| pypy3 | File | 3.28 KB | 0644 |
|
| pyston | File | 3.28 KB | 0644 |
|
| pyston3 | File | 3.28 KB | 0644 |
|
| pytest | File | 4.35 KB | 0644 |
|
| pytest-2 | File | 4.35 KB | 0644 |
|
| pytest-3 | File | 4.35 KB | 0644 |
|
| python | File | 3.28 KB | 0644 |
|
| python2 | File | 3.28 KB | 0644 |
|
| python2.7 | File | 3.28 KB | 0644 |
|
| python3 | File | 3.28 KB | 0644 |
|
| python3.10 | File | 3.28 KB | 0644 |
|
| python3.11 | File | 3.28 KB | 0644 |
|
| python3.12 | File | 3.28 KB | 0644 |
|
| python3.13 | File | 3.28 KB | 0644 |
|
| python3.3 | File | 3.28 KB | 0644 |
|
| python3.4 | File | 3.28 KB | 0644 |
|
| python3.5 | File | 3.28 KB | 0644 |
|
| python3.6 | File | 3.28 KB | 0644 |
|
| python3.7 | File | 3.28 KB | 0644 |
|
| python3.8 | File | 3.28 KB | 0644 |
|
| python3.9 | File | 3.28 KB | 0644 |
|
| pyvenv | File | 510 B | 0644 |
|
| pyvenv-3.10 | File | 510 B | 0644 |
|
| pyvenv-3.11 | File | 510 B | 0644 |
|
| pyvenv-3.12 | File | 510 B | 0644 |
|
| pyvenv-3.13 | File | 510 B | 0644 |
|
| pyvenv-3.4 | File | 510 B | 0644 |
|
| pyvenv-3.5 | File | 510 B | 0644 |
|
| pyvenv-3.6 | File | 510 B | 0644 |
|
| pyvenv-3.7 | File | 510 B | 0644 |
|
| pyvenv-3.8 | File | 510 B | 0644 |
|
| pyvenv-3.9 | File | 510 B | 0644 |
|
| qdbus | File | 361 B | 0644 |
|
| qemu | File | 3.22 KB | 0644 |
|
| qemu-kvm | File | 3.22 KB | 0644 |
|
| qemu-system-i386 | File | 3.22 KB | 0644 |
|
| qemu-system-x86_64 | File | 3.22 KB | 0644 |
|
| qmicli | File | 5.16 KB | 0644 |
|
| qrunner | File | 413 B | 0644 |
|
| querybts | File | 1.22 KB | 0644 |
|
| quota | File | 4.02 KB | 0644 |
|
| quotacheck | File | 4.02 KB | 0644 |
|
| quotaoff | File | 4.02 KB | 0644 |
|
| quotaon | File | 4.02 KB | 0644 |
|
| radvdump | File | 484 B | 0644 |
|
| ralsh | File | 10.13 KB | 0644 |
|
| rcs | File | 916 B | 0644 |
|
| rcsdiff | File | 916 B | 0644 |
|
| rdesktop | File | 1.43 KB | 0644 |
|
| rdict | File | 2.04 KB | 0644 |
|
| readprofile | File | 679 B | 0644 |
|
| remove_members | File | 775 B | 0644 |
|
| removepkg | File | 539 B | 0644 |
|
| renice | File | 784 B | 0644 |
|
| reportbug | File | 2.6 KB | 0644 |
|
| repquota | File | 4.02 KB | 0644 |
|
| resizepart | File | 605 B | 0644 |
|
| resolvconf | File | 461 B | 0644 |
|
| resolvectl | File | 6.57 KB | 0644 |
|
| rev | File | 439 B | 0644 |
|
| rfcomm | File | 9.48 KB | 0644 |
|
| rfkill | File | 962 B | 0644 |
|
| ri | File | 4.12 KB | 0644 |
|
| rlog | File | 916 B | 0644 |
|
| rmlist | File | 540 B | 0644 |
|
| route | File | 837 B | 0644 |
|
| rpcdebug | File | 1 KB | 0644 |
|
| rpm | File | 11.13 KB | 0644 |
|
| rpm2targz | File | 401 B | 0644 |
|
| rpm2tgz | File | 401 B | 0644 |
|
| rpm2txz | File | 401 B | 0644 |
|
| rpmbuild | File | 11.13 KB | 0644 |
|
| rpmbuild-md5 | File | 11.13 KB | 0644 |
|
| rpmcheck | File | 558 B | 0644 |
|
| rrdtool | File | 469 B | 0644 |
|
| rsync | File | 3.61 KB | 0644 |
|
| rtcwake | File | 1.06 KB | 0644 |
|
| run0 | File | 4.23 KB | 0644 |
|
| runuser | File | 892 B | 0644 |
|
| s390-koji | File | 6.57 KB | 0644 |
|
| sbcl | File | 707 B | 0644 |
|
| sbcl-mt | File | 707 B | 0644 |
|
| sbopkg | File | 1.7 KB | 0644 |
|
| scp | File | 19.65 KB | 0644 |
|
| screen | File | 3.27 KB | 0644 |
|
| script | File | 1.04 KB | 0644 |
|
| scriptlive | File | 762 B | 0644 |
|
| scriptreplay | File | 917 B | 0644 |
|
| scrub | File | 1001 B | 0644 |
|
| sdptool | File | 9.48 KB | 0644 |
|
| set | File | 1.16 KB | 0644 |
|
| setarch | File | 790 B | 0644 |
|
| setpriv | File | 3.05 KB | 0644 |
|
| setquota | File | 4.02 KB | 0644 |
|
| setsid | File | 440 B | 0644 |
|
| setterm | File | 2.53 KB | 0644 |
|
| sfdisk | File | 2.1 KB | 0644 |
|
| sftp | File | 19.65 KB | 0644 |
|
| sh | File | 871 B | 0644 |
|
| sha1sum | File | 860 B | 0644 |
|
| sha224sum | File | 860 B | 0644 |
|
| sha256sum | File | 860 B | 0644 |
|
| sha384sum | File | 860 B | 0644 |
|
| sha512sum | File | 860 B | 0644 |
|
| shasum | File | 860 B | 0644 |
|
| shellcheck | File | 1.76 KB | 0644 |
|
| sidedoor | File | 19.65 KB | 0644 |
|
| sitecopy | File | 1.38 KB | 0644 |
|
| slabtop | File | 811 B | 0644 |
|
| slapt-get | File | 2.48 KB | 0644 |
|
| slapt-src | File | 1.97 KB | 0644 |
|
| slogin | File | 19.65 KB | 0644 |
|
| smartctl | File | 3.72 KB | 0644 |
|
| smbcacls | File | 8.13 KB | 0644 |
|
| smbclient | File | 8.13 KB | 0644 |
|
| smbcquotas | File | 8.13 KB | 0644 |
|
| smbget | File | 8.13 KB | 0644 |
|
| smbpasswd | File | 8.13 KB | 0644 |
|
| smbtar | File | 8.13 KB | 0644 |
|
| smbtree | File | 8.13 KB | 0644 |
|
| snap | File | 2.48 KB | 0644 |
|
| snownews | File | 360 B | 0644 |
|
| sparc-koji | File | 6.57 KB | 0644 |
|
| spovray | File | 2.33 KB | 0644 |
|
| sqlite3 | File | 900 B | 0644 |
|
| ss | File | 1.26 KB | 0644 |
|
| ssh | File | 19.65 KB | 0644 |
|
| ssh-add | File | 1.08 KB | 0644 |
|
| ssh-copy-id | File | 931 B | 0644 |
|
| ssh-keygen | File | 5.87 KB | 0644 |
|
| ssh-keyscan | File | 1.13 KB | 0644 |
|
| sshfs | File | 627 B | 0644 |
|
| sshmitm | File | 369 B | 0644 |
|
| sshow | File | 521 B | 0644 |
|
| star | File | 21.63 KB | 0644 |
|
| strace | File | 3.24 KB | 0644 |
|
| stream | File | 8.48 KB | 0644 |
|
| strings | File | 1.5 KB | 0644 |
|
| su | File | 892 B | 0644 |
|
| sudo | File | 1.61 KB | 0644 |
|
| sudoedit | File | 1.61 KB | 0644 |
|
| svcadm | File | 5.02 KB | 0644 |
|
| svk | File | 8.53 KB | 0644 |
|
| swaplabel | File | 635 B | 0644 |
|
| swapoff | File | 743 B | 0644 |
|
| swapon | File | 1.97 KB | 0644 |
|
| sync_members | File | 923 B | 0644 |
|
| synclient | File | 581 B | 0644 |
|
| sysbench | File | 3.75 KB | 0644 |
|
| sysctl | File | 872 B | 0644 |
|
| systemctl | File | 15.77 KB | 0644 |
|
| systemd-analyze | File | 8.12 KB | 0644 |
|
| systemd-cat | File | 1.87 KB | 0644 |
|
| systemd-cgls | File | 2.33 KB | 0644 |
|
| systemd-cgtop | File | 2.21 KB | 0644 |
|
| systemd-confext | File | 2.64 KB | 0644 |
|
| systemd-creds | File | 5.28 KB | 0644 |
|
| systemd-cryptenroll | File | 3.7 KB | 0644 |
|
| systemd-delta | File | 1.77 KB | 0644 |
|
| systemd-detect-virt | File | 1.34 KB | 0644 |
|
| systemd-dissect | File | 3.8 KB | 0644 |
|
| systemd-id128 | File | 2.47 KB | 0644 |
|
| systemd-path | File | 1.72 KB | 0644 |
|
| systemd-resolve | File | 2.7 KB | 0644 |
|
| systemd-run | File | 5.5 KB | 0644 |
|
| systemd-sysext | File | 2.41 KB | 0644 |
|
| systemd-vpick | File | 1.78 KB | 0644 |
|
| tar | File | 21.63 KB | 0644 |
|
| taskset | File | 1.18 KB | 0644 |
|
| tc | File | 25.87 KB | 0644 |
|
| tcpdump | File | 1.7 KB | 0644 |
|
| tcpkill | File | 473 B | 0644 |
|
| tcpnice | File | 441 B | 0644 |
|
| tightvncviewer | File | 3.02 KB | 0644 |
|
| timedatectl | File | 2.97 KB | 0644 |
|
| timeout | File | 1014 B | 0644 |
|
| tinysparql | File | 1.12 KB | 0644 |
|
| tipc | File | 8.11 KB | 0644 |
|
| tox | File | 1.38 KB | 0644 |
|
| trace-cmd.bash | File | 6.9 KB | 0644 |
|
| tracepath | File | 543 B | 0644 |
|
| tracepath6 | File | 543 B | 0644 |
|
| tree | File | 1.13 KB | 0644 |
|
| truncate | File | 749 B | 0644 |
|
| tshark | File | 3.86 KB | 0644 |
|
| tsig-keygen | File | 625 B | 0644 |
|
| tune2fs | File | 1.63 KB | 0644 |
|
| typeset | File | 1.14 KB | 0644 |
|
| ua | File | 1.95 KB | 0644 |
|
| ubuntu-bug | File | 5.21 KB | 0644 |
|
| ubuntu-report | File | 10.26 KB | 0644 |
|
| uclampset | File | 665 B | 0644 |
|
| udevadm | File | 11.23 KB | 0644 |
|
| udisksctl | File | 857 B | 0644 |
|
| ufw | File | 2.44 KB | 0644 |
|
| ul | File | 655 B | 0644 |
|
| ulimit | File | 821 B | 0644 |
|
| umount | File | 1.82 KB | 0644 |
|
| unace | File | 498 B | 0644 |
|
| unpack200 | File | 1.35 KB | 0644 |
|
| unrar | File | 636 B | 0644 |
|
| unshare | File | 936 B | 0644 |
|
| unshunt | File | 357 B | 0644 |
|
| update-alternatives | File | 2.83 KB | 0644 |
|
| update-initramfs | File | 581 B | 0644 |
|
| update-rc.d | File | 1.91 KB | 0644 |
|
| upgradepkg | File | 759 B | 0644 |
|
| urlsnarf | File | 530 B | 0644 |
|
| useradd | File | 1.51 KB | 0644 |
|
| userdel | File | 619 B | 0644 |
|
| usermod | File | 1.6 KB | 0644 |
|
| uuidd | File | 862 B | 0644 |
|
| uuidgen | File | 753 B | 0644 |
|
| uuidparse | File | 727 B | 0644 |
|
| valgrind | File | 3.22 KB | 0644 |
|
| vgcfgbackup | File | 21.02 KB | 0644 |
|
| vgcfgrestore | File | 21.02 KB | 0644 |
|
| vgchange | File | 21.02 KB | 0644 |
|
| vgck | File | 21.02 KB | 0644 |
|
| vgconvert | File | 21.02 KB | 0644 |
|
| vgcreate | File | 21.02 KB | 0644 |
|
| vgdisplay | File | 21.02 KB | 0644 |
|
| vgexport | File | 21.02 KB | 0644 |
|
| vgextend | File | 21.02 KB | 0644 |
|
| vgimport | File | 21.02 KB | 0644 |
|
| vgmerge | File | 21.02 KB | 0644 |
|
| vgmknodes | File | 21.02 KB | 0644 |
|
| vgreduce | File | 21.02 KB | 0644 |
|
| vgremove | File | 21.02 KB | 0644 |
|
| vgrename | File | 21.02 KB | 0644 |
|
| vgs | File | 21.02 KB | 0644 |
|
| vgscan | File | 21.02 KB | 0644 |
|
| vgsplit | File | 21.02 KB | 0644 |
|
| vigr | File | 562 B | 0644 |
|
| vipw | File | 562 B | 0644 |
|
| vmstat | File | 729 B | 0644 |
|
| vncviewer | File | 3.02 KB | 0644 |
|
| vpnc | File | 2.1 KB | 0644 |
|
| wall | File | 634 B | 0644 |
|
| watch | File | 1.29 KB | 0644 |
|
| wdctl | File | 1.34 KB | 0644 |
|
| webmitm | File | 369 B | 0644 |
|
| wget | File | 6.63 KB | 0644 |
|
| whatis | File | 3.57 KB | 0644 |
|
| whereis | File | 531 B | 0644 |
|
| whiptail | File | 345 B | 0644 |
|
| wine | File | 696 B | 0644 |
|
| wine-development | File | 696 B | 0644 |
|
| wine-stable | File | 696 B | 0644 |
|
| wine64 | File | 696 B | 0644 |
|
| wine64-development | File | 696 B | 0644 |
|
| wine64-stable | File | 696 B | 0644 |
|
| wipefs | File | 1.3 KB | 0644 |
|
| withlist | File | 576 B | 0644 |
|
| wodim | File | 3.43 KB | 0644 |
|
| wol | File | 1.36 KB | 0644 |
|
| wsimport | File | 1.16 KB | 0644 |
|
| wtf | File | 1.08 KB | 0644 |
|
| wvdial | File | 1.27 KB | 0644 |
|
| xdg-mime | File | 2.44 KB | 0644 |
|
| xdg-settings | File | 723 B | 0644 |
|
| xev | File | 765 B | 0644 |
|
| xfreerdp | File | 2.25 KB | 0644 |
|
| xgamma | File | 1.97 KB | 0644 |
|
| xhost | File | 438 B | 0644 |
|
| xmllint | File | 1.3 KB | 0644 |
|
| xmlwf | File | 713 B | 0644 |
|
| xmms | File | 785 B | 0644 |
|
| xmodmap | File | 450 B | 0644 |
|
| xpovray | File | 2.33 KB | 0644 |
|
| xrandr | File | 5.08 KB | 0644 |
|
| xrdb | File | 535 B | 0644 |
|
| xsltproc | File | 1.25 KB | 0644 |
|
| xvfb-run | File | 1 KB | 0644 |
|
| xvnc4viewer | File | 3.02 KB | 0644 |
|
| xxd | File | 634 B | 0644 |
|
| xz | File | 1.6 KB | 0644 |
|
| xzdec | File | 741 B | 0644 |
|
| ypcat | File | 708 B | 0644 |
|
| ypmatch | File | 708 B | 0644 |
|
| yum-arch | File | 390 B | 0644 |
|
| zopfli | File | 694 B | 0644 |
|
| zopflipng | File | 1002 B | 0644 |
|
| zramctl | File | 1.26 KB | 0644 |
|