__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# bash completion for devlink(8) -*- shell-script -*-
# Get all the optional commands for devlink
_devlink_get_optional_commands()
{
local object=$1; shift
local filter_options=""
local options="$(devlink $object help 2>&1 \
| command sed -n -e "s/^.*devlink $object //p" \
| cut -d " " -f 1)"
# Remove duplicate options from "devlink $OBJECT help" command
local opt
for opt in $options; do
if [[ $filter_options =~ $opt ]]; then
continue
else
filter_options="$filter_options $opt"
fi
done
echo $filter_options
}
# Complete based on given word, for when an argument or an option name has
# but a few possible arguments.
_devlink_direct_complete()
{
local dev port region value
case $1 in
dev)
value=$(devlink dev show 2>/dev/null)
;;
selftests_id)
dev=${words[4]}
value=$(devlink -j dev selftests show 2>/dev/null \
| jq ".selftests[\"$dev\"][]")
;;
param_name)
dev=${words[4]}
value=$(devlink -j dev param show 2>/dev/null \
| jq ".param[\"$dev\"][].name")
;;
port)
value=$(devlink -j port show 2>/dev/null \
| jq '.port as $ports | $ports | keys[] as $key
| ($ports[$key].netdev // $key)')
;;
lc)
dev=${words[3]}
value=$(devlink -j lc show 2>/dev/null \
| jq ".lc[\"$dev\"]" \
| jq '. as $lcs | $lcs | keys[] as $key |($lcs[$key].lc)' \
2>/dev/null)
;;
lc_type)
dev=${words[3]}
lc=${words[5]}
value=$(devlink lc show $dev lc $lc -j 2>/dev/null \
| jq '.[][][]["supported_types"][]')
;;
region)
value=$(devlink -j region show 2>/dev/null \
| jq '.regions' | jq 'keys[]')
;;
snapshot)
region=${words[3]}
value=$(devlink -j region show 2>/dev/null \
| jq ".regions[\"$region\"].snapshot[]")
;;
trap)
dev=${words[3]}
value=$(devlink -j trap show 2>/dev/null \
| jq ".trap[\"$dev\"][].name")
;;
trap_group)
dev=${words[4]}
value=$(devlink -j trap group show 2>/dev/null \
| jq ".trap_group[\"$dev\"][].name")
;;
trap_policer)
dev=${words[4]}
value=$(devlink -j trap policer show 2>/dev/null \
| jq ".trap_policer[\"$dev\"][].policer")
;;
health_dev)
value=$(devlink -j health show 2>/dev/null | jq '.health' \
| jq 'keys[]')
;;
reporter)
dev=${words[cword - 2]}
value=$(devlink -j health show 2>/dev/null \
| jq ".health[\"$dev\"][].reporter")
;;
pool)
dev=$pprev
value=$(devlink -j sb pool show 2>/dev/null \
| jq ".pool[\"$dev\"][].pool")
;;
port_pool)
port=${words[5]}
value=$(devlink -j sb port pool show 2>/dev/null \
| jq ".port_pool[\"$port\"][].pool")
;;
tc)
port=$pprev
value=$(devlink -j sb tc bind show 2>/dev/null \
| jq ".tc_bind[\"$port\"][].tc")
;;
esac
COMPREPLY+=( $( compgen -W "$value" -- "$cur" ) )
# Remove colon containing prefix from COMPREPLY items in order to avoid
# wordbreaks with colon.
__ltrim_colon_completions "$cur"
}
# Completion for devlink dev eswitch set
_devlink_dev_eswitch_set()
{
local -A settings=(
[mode]=notseen
[inline-mode]=notseen
[encap-mode]=notseen
)
if [[ $cword -eq 5 ]]; then
COMPREPLY=( $( compgen -W "mode inline-mode encap-mode" -- "$cur" ) )
fi
# Mark seen settings
local word
for word in "${words[@]:5:${#words[@]}-1}"; do
if [[ -n $word ]]; then
if [[ "${settings[$word]}" ]]; then
settings[$word]=seen
fi
fi
done
case $prev in
mode)
COMPREPLY=( $( compgen -W "legacy switchdev" -- "$cur" ) )
return
;;
inline-mode)
COMPREPLY=( $( compgen -W "none link network transport" -- \
"$cur" ) )
return
;;
encap-mode)
COMPREPLY=( $( compgen -W "none basic" -- "$cur" ) )
return
;;
esac
local -a comp_words=()
# Add settings not seen to completions
local setting
for setting in "${!settings[@]}"; do
if [ "${settings[$setting]}" = notseen ]; then
comp_words+=( "$setting" )
fi
done
COMPREPLY=( $( compgen -W "${comp_words[*]}" -- "$cur" ) )
}
# Completion for devlink dev eswitch
_devlink_dev_eswitch()
{
case "$cword" in
3)
COMPREPLY=( $( compgen -W "show set" -- "$cur" ) )
return
;;
4)
_devlink_direct_complete "dev"
return
;;
esac
case "${words[3]}" in
set)
_devlink_dev_eswitch_set
return
;;
show)
return
;;
esac
}
# Completion for devlink dev param set
_devlink_dev_param_set()
{
case $cword in
7)
COMPREPLY=( $( compgen -W "value" -- "$cur" ) )
return
;;
8)
# String argument
return
;;
9)
COMPREPLY=( $( compgen -W "cmode" -- "$cur" ) )
return
;;
10)
COMPREPLY=( $( compgen -W "runtime driverinit permanent" -- \
"$cur" ) )
return
;;
esac
}
# Completion for devlink dev param
_devlink_dev_param()
{
case "$cword" in
3)
COMPREPLY=( $( compgen -W "show set" -- "$cur" ) )
return
;;
4)
_devlink_direct_complete "dev"
return
;;
5)
COMPREPLY=( $( compgen -W "name" -- "$cur" ) )
return
;;
6)
_devlink_direct_complete "param_name"
return
;;
esac
if [[ "${words[3]}" == "set" ]]; then
_devlink_dev_param_set
fi
}
# Completion for devlink dev reload
_devlink_dev_reload()
{
case "$cword" in
4)
COMPREPLY=( $( compgen -W "netns" -- "$cur" ) )
return
;;
5)
local nslist=$( ip netns list 2>/dev/null )
COMPREPLY=( $( compgen -W "$nslist" -- "$cur" ) )
return
;;
esac
}
# Completion for devlink dev flash
_devlink_dev_flash()
{
case "$cword" in
4)
COMPREPLY=( $( compgen -W "file" -- "$cur" ) )
return
;;
5)
_filedir
return
;;
6)
COMPREPLY=( $( compgen -W "component" -- "$cur" ) )
return
;;
esac
}
# Completion for devlink dev selftests
_devlink_dev_selftests()
{
if [[ $cword -gt 5 ]]; then
_devlink_direct_complete "selftests_id"
return
fi
case "$cword" in
3)
COMPREPLY=( $( compgen -W "show run" -- "$cur" ) )
return
;;
4)
_devlink_direct_complete "dev"
return
;;
5)
COMPREPLY=( $( compgen -W "id" -- "$cur" ) )
return
;;
esac
}
# Completion for devlink dev
_devlink_dev()
{
case $command in
show|reload|info|flash)
if [[ $cword -le 3 ]]; then
_devlink_direct_complete "dev"
elif [[ $command == "reload" || $command == "flash" ]];then
_devlink_dev_$command
fi
return
;;
eswitch|param|selftests)
_devlink_dev_$command
return
;;
esac
}
# Completion for devlink port set
_devlink_port_set()
{
case "$cword" in
3)
_devlink_direct_complete "port"
return
;;
4)
COMPREPLY=( $( compgen -W "type" -- "$cur" ) )
return
;;
5)
COMPREPLY=( $( compgen -W "eth ib auto" -- "$cur" ) )
return
;;
esac
}
# Completion for devlink port split
_devlink_port_split()
{
case "$cword" in
3)
_devlink_direct_complete "port"
return
;;
4)
COMPREPLY=( $( compgen -W "count" -- "$cur" ) )
return
;;
5)
# Integer argument
return
;;
esac
}
# Completion for devlink port param set
_devlink_port_param_set()
{
case $cword in
7)
COMPREPLY=( $( compgen -W "value" -- "$cur" ) )
return
;;
8)
# String argument
return
;;
9)
COMPREPLY=( $( compgen -W "cmode" -- "$cur" ) )
return
;;
10)
COMPREPLY=( $( compgen -W "runtime driverinit permanent" -- \
"$cur" ) )
return
;;
esac
}
# Completion for devlink port param
_devlink_port_param()
{
case "$cword" in
3)
COMPREPLY=( $( compgen -W "show set" -- "$cur" ) )
return
;;
4)
_devlink_direct_complete "port"
return
;;
5)
COMPREPLY=( $( compgen -W "name" -- "$cur" ) )
return
;;
6)
_devlink_direct_complete "param_name"
return
;;
esac
if [[ "${words[3]}" == "set" ]]; then
_devlink_port_param_set
fi
}
# Completion for devlink port
_devlink_port()
{
case $command in
set)
_devlink_port_set
return
;;
split)
_devlink_port_split
return
;;
param)
_devlink_port_param
return
;;
show|unsplit)
if [[ $cword -eq 3 ]]; then
_devlink_direct_complete "port"
fi
return
;;
esac
}
# Completion for devlink lc set
_devlink_lc_set()
{
case "$cword" in
3)
_devlink_direct_complete "dev"
return
;;
4)
COMPREPLY=( $( compgen -W "lc" -- "$cur" ) )
;;
5)
_devlink_direct_complete "lc"
;;
6)
COMPREPLY=( $( compgen -W "type notype" -- "$cur" ) )
return
;;
7)
if [[ "$prev" == "type" ]]; then
_devlink_direct_complete "lc_type"
fi
esac
}
# Completion for devlink lc show
_devlink_lc_show()
{
case $cword in
3)
_devlink_direct_complete "dev"
;;
4)
COMPREPLY=( $( compgen -W "lc" -- "$cur" ) )
;;
5)
_devlink_direct_complete "lc"
;;
esac
}
# Completion for devlink lc
_devlink_lc()
{
case $command in
set)
_devlink_lc_set
return
;;
show)
_devlink_lc_show
return
;;
esac
}
# Completion for devlink dpipe
_devlink_dpipe()
{
local options="$(devlink dpipe help 2>&1 \
| command sed -e '/OBJECT-LIST := /!d' \
-e 's/.*{ //' -e 's/}.*//' -e 's/|//g' )"
if [[ $cword -eq 2 ]]; then
COMPREPLY+=( $( compgen -W "$options" -- "$cur" ) )
fi
}
# Completion for devlink monitor
_devlink_monitor()
{
local options="$(devlink monitor help 2>&1 \
| command sed -e '/OBJECT-LIST := /!d' \
-e 's/.*{ //' -e 's/}.*//' -e 's/|//g' )"
if [[ $cword -eq 2 ]]; then
COMPREPLY+=( $( compgen -W "all $options" -- "$cur" ) )
fi
}
# Completion for the rest of devlink sb $command
_devlink_sb_command_options()
{
local subcmd
case $command in
pool)
subcmd=${words[3]}
if [[ $cword -eq 5 ]]; then
COMPREPLY=( $( compgen -W "pool" -- "$cur" ) )
fi
if [[ $subcmd == "set" ]]; then
case $cword in
7)
COMPREPLY+=( $( compgen -W "size" -- "$cur" ) )
;;
9)
COMPREPLY+=( $( compgen -W "thtype" -- "$cur" ) )
;;
esac
fi
;;
port)
subcmd=${words[4]}
if [[ $cword -eq 6 ]]; then
COMPREPLY+=( $( compgen -W "pool" -- "$cur" ) )
fi
if [[ $subcmd == "set" ]]; then
case $cword in
8)
COMPREPLY+=( $( compgen -W "th" -- "$cur" ) )
;;
esac
fi
;;
tc)
subcmd=${words[4]}
case $cword in
6)
COMPREPLY+=( $( compgen -W "tc" -- "$cur" ) )
;;
8)
COMPREPLY+=( $( compgen -W "type" -- "$cur" ) )
;;
esac
if [[ $subcmd == "set" ]]; then
case $cword in
10)
COMPREPLY+=( $( compgen -W "pool" -- "$cur" ) )
;;
12)
COMPREPLY+=( $( compgen -W "th" -- "$cur" ) )
;;
esac
fi
;;
esac
}
# Completion for devlink sb
_devlink_sb()
{
case $prev in
bind)
COMPREPLY=( $( compgen -W "set show" -- "$cur" ) )
;;
occupancy)
COMPREPLY=( $( compgen -W "show snapshot clearmax" -- "$cur" ) )
;;
pool)
if [[ $cword -eq 3 || $cword -eq 4 ]]; then
COMPREPLY=( $( compgen -W "set show" -- "$cur" ) )
elif [[ $command == "port" || $command == "tc" ]]; then
_devlink_direct_complete "port_pool"
else
_devlink_direct_complete "pool"
fi
;;
port)
if [[ $cword -eq 3 ]]; then
COMPREPLY=( $( compgen -W "pool" -- "$cur" ) )
fi
;;
show|set|snapshot|clearmax)
case $command in
show|pool|occupancy)
_devlink_direct_complete "dev"
if [[ $command == "occupancy" && $prev == "show" ]];then
_devlink_direct_complete "port"
fi
;;
port|tc)
_devlink_direct_complete "port"
;;
esac
;;
size)
# Integer argument
;;
thtype)
COMPREPLY=( $( compgen -W "static dynamic" -- "$cur" ) )
;;
th)
# Integer argument
;;
tc)
if [[ $cword -eq 3 ]]; then
COMPREPLY=( $( compgen -W "bind" -- "$cur" ) )
else
_devlink_direct_complete "tc"
fi
;;
type)
COMPREPLY=( $( compgen -W "ingress egress" -- "$cur" ) )
;;
esac
_devlink_sb_command_options
return
}
# Completion for devlink resource set path argument
_devlink_resource_path()
{
local path parents parent all_path
local dev=${words[3]}
local -a path
local all_path=$(
devlink resource show $dev \
| sed -E '# Of resource lines, keep only the name itself.
s/name ([^ ]*) .*/\1/
# Drop headers.
/:$/d
# First layer is not aligned enough, align it.
s/^/ /
# Use slashes as unary code for resource depth.
s, ,/,g
# Separate tally count from resource name.
s,/*,&\t,' \
| while read d name; do
while ((${#path[@]} > ${#d})); do
unset path[$((${#path[@]} - 1))]
done
path[$((${#d} - 1))]=$name
echo ${path[@]}
done \
| sed '# Convert paths to slash-separated
s,^,/,;s, ,/,g;s,$,/,'
)
COMPREPLY=( ${COMPREPLY[@]:-} $( compgen -W "$all_path" -- "$cur" ) )
}
# Completion for devlink resource set
_devlink_resource_set()
{
case "$cword" in
3)
_devlink_direct_complete "dev"
return
;;
4)
COMPREPLY=( $( compgen -W "path" -- "$cur" ) )
return
;;
5)
_devlink_resource_path
return
;;
6)
COMPREPLY=( $( compgen -W "size" -- "$cur" ) )
return
;;
7)
# Integer argument
return
;;
esac
}
# Completion for devlink resource
_devlink_resource()
{
case $command in
show)
if [[ $cword -eq 3 ]]; then
_devlink_direct_complete "dev"
fi
return
;;
set)
_devlink_resource_set
return
;;
esac
}
# Completion for devlink region read
_devlink_region_read()
{
case "$cword" in
6)
COMPREPLY=( $( compgen -W "address" -- "$cur" ) )
return
;;
7)
# Address argument, for example: 0x10
return
;;
8)
COMPREPLY=( $( compgen -W "length" -- "$cur" ) )
return
;;
9)
# Integer argument
return
;;
esac
}
# Completion for devlink region
_devlink_region()
{
if [[ $cword -eq 3 && $command != "help" ]]; then
_devlink_direct_complete "region"
fi
case $command in
show)
return
;;
del|dump|read)
case "$cword" in
4)
COMPREPLY=( $( compgen -W "snapshot" -- "$cur" ) )
;;
5)
_devlink_direct_complete "snapshot"
;;
esac
if [[ $command == "read" ]]; then
_devlink_region_read
fi
return
;;
esac
}
# Completion reporter for devlink health
_devlink_health_reporter()
{
local i=$1; shift
case $cword in
$((3 + $i)))
_devlink_direct_complete "health_dev"
;;
$((4 + $i)))
COMPREPLY=( $( compgen -W "reporter" -- "$cur" ) )
;;
$((5 + $i)))
_devlink_direct_complete "reporter"
;;
esac
}
# Completion for devlink health
_devlink_health()
{
case $command in
show|recover|diagnose|set|test)
_devlink_health_reporter 0
if [[ $command == "set" ]]; then
case $cword in
6)
COMPREPLY=( $( compgen -W "grace_period auto_recover" \
-- "$cur" ) )
;;
7)
case $prev in
grace_period)
# Integer argument- msec
;;
auto_recover)
COMPREPLY=( $( compgen -W "true false" -- \
"$cur" ) )
;;
esac
esac
fi
return
;;
dump)
if [[ $cword -eq 3 ]]; then
COMPREPLY=( $( compgen -W "show clear" -- "$cur" ) )
fi
_devlink_health_reporter 1
return
;;
esac
}
# Completion for action in devlink trap set
_devlink_trap_set_action()
{
local i=$1; shift
case $cword in
$((6 + $i)))
COMPREPLY=( $( compgen -W "action" -- "$cur" ) )
;;
$((7 + $i)))
COMPREPLY=( $( compgen -W "trap drop mirror" -- "$cur" ) )
;;
esac
}
# Completion for devlink trap group set
_devlink_trap_group_set()
{
local -A settings=(
[action]=notseen
[policer]=notseen
[nopolicer]=notseen
)
if [[ $cword -eq 7 ]]; then
COMPREPLY=( $( compgen -W "action policer nopolicer" -- "$cur" ) )
fi
# Mark seen settings
local word
for word in "${words[@]:7:${#words[@]}-1}"; do
if [[ -n $word ]]; then
if [[ "${settings[$word]}" ]]; then
settings[$word]=seen
fi
fi
done
case $prev in
action)
COMPREPLY=( $( compgen -W "trap drop mirror" -- "$cur" ) )
return
;;
policer)
_devlink_direct_complete "trap_policer"
return
;;
esac
local -a comp_words=()
# Add settings not seen to completions
local setting
for setting in "${!settings[@]}"; do
if [ "${settings[$setting]}" = notseen ]; then
comp_words+=( "$setting" )
fi
done
COMPREPLY=( $( compgen -W "${comp_words[*]}" -- "$cur" ) )
}
# Completion for devlink trap group
_devlink_trap_group()
{
case $cword in
3)
COMPREPLY=( $( compgen -W "set show" -- "$cur" ) )
return
;;
4)
_devlink_direct_complete "dev"
return
;;
5)
COMPREPLY=( $( compgen -W "group" -- "$cur" ) )
return
;;
6)
_devlink_direct_complete "trap_group"
return
;;
esac
if [[ ${words[3]} == "set" ]]; then
_devlink_trap_group_set
fi
}
# Completion for devlink trap policer set
_devlink_trap_policer_set()
{
local -A settings=(
[rate]=notseen
[burst]=notseen
)
if [[ $cword -eq 7 ]]; then
COMPREPLY=( $( compgen -W "rate burst" -- "$cur" ) )
fi
# Mark seen settings
local word
for word in "${words[@]:7:${#words[@]}-1}"; do
if [[ -n $word ]]; then
if [[ "${settings[$word]}" ]]; then
settings[$word]=seen
fi
fi
done
case $prev in
rate)
# Integer argument
return
;;
burst)
# Integer argument
return
;;
esac
local -a comp_words=()
# Add settings not seen to completions
local setting
for setting in "${!settings[@]}"; do
if [ "${settings[$setting]}" = notseen ]; then
comp_words+=( "$setting" )
fi
done
COMPREPLY=( $( compgen -W "${comp_words[*]}" -- "$cur" ) )
}
# Completion for devlink trap policer
_devlink_trap_policer()
{
case $cword in
3)
COMPREPLY=( $( compgen -W "set show" -- "$cur" ) )
return
;;
4)
_devlink_direct_complete "dev"
return
;;
5)
COMPREPLY=( $( compgen -W "policer" -- "$cur" ) )
return
;;
6)
_devlink_direct_complete "trap_policer"
return
;;
esac
if [[ ${words[3]} == "set" ]]; then
_devlink_trap_policer_set
fi
}
# Completion for devlink trap
_devlink_trap()
{
case $command in
show|set)
case $cword in
3)
_devlink_direct_complete "dev"
;;
4)
COMPREPLY=( $( compgen -W "trap" -- "$cur" ) )
;;
5)
_devlink_direct_complete "trap"
;;
esac
if [[ $command == "set" ]]; then
_devlink_trap_set_action 0
fi
return
;;
group)
_devlink_trap_$command
return
;;
policer)
_devlink_trap_$command
return
;;
esac
}
# Complete any devlink command
_devlink()
{
local cur prev words cword
local opt='--Version --no-nice-names --json --pretty --verbose \
--statistics --force --Netns --batch'
local objects="$(devlink help 2>&1 | command sed -e '/OBJECT := /!d' \
-e 's/.*{//' -e 's/}.*//' -e \ 's/|//g' )"
_init_completion || return
# Gets the word-to-complete without considering the colon as word breaks
_get_comp_words_by_ref -n : cur prev words cword
if [[ $cword -eq 1 ]]; then
case $cur in
-*)
COMPREPLY=( $( compgen -W "$opt" -- "$cur" ) )
return 0
;;
*)
COMPREPLY=( $( compgen -W "$objects" -- "$cur" ) )
return 0
;;
esac
fi
# Deal with options
if [[ $prev == -* ]]; then
case $prev in
-V|--Version)
return 0
;;
-b|--batch)
_filedir
return 0
;;
--force)
COMPREPLY=( $( compgen -W "--batch" -- "$cur" ) )
return 0
;;
-N|--Netns)
local nslist=$( ip netns list 2>/dev/null )
COMPREPLY=( $( compgen -W "$nslist" -- "$cur" ) )
return 0
;;
-j|--json)
COMPREPLY=( $( compgen -W "--pretty $objects" -- "$cur" ) )
return 0
;;
*)
COMPREPLY=( $( compgen -W "$objects" -- "$cur" ) )
return 0
;;
esac
fi
# Remove all options so completions don't have to deal with them.
local i
for (( i=1; i < ${#words[@]}; )); do
if [[ ${words[i]::1} == - ]]; then
words=( "${words[@]:0:i}" "${words[@]:i+1}" )
[[ $i -le $cword ]] && cword=$(( cword - 1 ))
else
i=$(( ++i ))
fi
done
local object=${words[1]}
local command=${words[2]}
local pprev=${words[cword - 2]}
local prev=${words[cword - 1]}
if [[ $objects =~ $object ]]; then
if [[ $cword -eq 2 ]]; then
COMPREPLY=( $( compgen -W "help" -- "$cur") )
if [[ $object != "monitor" && $object != "dpipe" ]]; then
COMPREPLY+=( $( compgen -W \
"$(_devlink_get_optional_commands $object)" -- "$cur" ) )
fi
fi
"_devlink_$object"
fi
} &&
complete -F _devlink devlink
# ex: ts=4 sw=4 et 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 |
|