__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# bash completion for ethtool(8) -*- shell-script -*-
# shellcheck shell=bash disable=SC2207
# Complete a word representing a set of characters.
# @param $@ chars Characters which may be present in completed set.
_ethtool_compgen_letterset()
{
local char
for char; do
case "$cur" in
*"$char"*)
# $cur already contains $char
;;
*)
COMPREPLY+=( "$cur$char" )
;;
esac
done
}
# Generate completions for words matched case-insensitively
# @param $@ choices Completion choices.
_ethtool_compgen_nocase()
{
local reset
reset=$( shopt -p nocasematch )
shopt -s nocasematch
local choice
for choice; do
case "$choice" in
"$cur"*) COMPREPLY+=( "$choice" ) ;;
esac
done
$reset
}
# Gets names from a section of ethtool output.
# @param $1 section_bre POSIX BRE matching section heading (without : at end).
# @param $@ ethtool arguments
_ethtool_get_names_in_section()
{
local section_bre="$1"
shift
PATH="$PATH:/sbin:/usr/sbin:/usr/local/sbin" \
ethtool "$@" 2>/dev/null |
command sed -n "
# Line is section heading iff it ends with :
# From requested section heading to next section heading
/^$section_bre:$/,/:$/ {
# If line is section heading, ignore it
/:$/d
# Remove value and separator, if present
s/[[:space:]]*:.*//
# Remove leading space, if present
s/^[[:space:]]*//
# Print the line
p
}"
}
# Complete an RSS Context ID
_ethtool_context()
{
COMPREPLY=(
$(PATH="$PATH:/sbin:/usr/sbin:/usr/local/sbin" \
ethtool --show-nfc "${words[2]}" 2>/dev/null |
command sed -n 's/^[[:space:]]*RSS Context ID:[[:space:]]*\([0-9]*\)$/\1/p' |
sort -u) )
}
# Complete a network flow traffic type
# Available OPTIONS:
# --hash Complete only types suitable for rx hashing
_ethtool_flow_type()
{
local types='ah4 ah6 esp4 esp6 ether sctp4 sctp6 tcp4 tcp6 udp4 udp6'
if [ "${1-}" != --hash ]; then
types="$types ip4 ip6"
else
types="gtpc4 gtpc6 gtpc4t gtpc6t gtpu4 gtpu6 gtpu4e gtpu6e gtpu4u gtpu6u gtpu4d gtpu6d $types"
fi
COMPREPLY=( $( compgen -W "$types" -- "$cur" ) )
}
# Completion for ethtool --change
_ethtool_change()
{
local -A settings=(
[advertise]=notseen
[autoneg]=notseen
[duplex]=notseen
[mdix]=notseen
[msglvl]=notseen
[port]=notseen
[phyad]=notseen
[speed]=notseen
[wol]=notseen
[xcvr]=notseen
[lanes]=notseen
)
local -A msgtypes=(
[drv]=notseen
[hw]=notseen
[ifdown]=notseen
[ifup]=notseen
[intr]=notseen
[link]=notseen
[pktdata]=notseen
[probe]=notseen
[rx_err]=notseen
[rx_status]=notseen
[timer]=notseen
[tx_done]=notseen
[tx_err]=notseen
[tx_queued]=notseen
[wol]=notseen
)
# Mark seen settings and msgtypes, and whether in msglvl sub-command
local in_msglvl=
local word
for word in "${words[@]:3:${#words[@]}-4}"; do
if [ "$in_msglvl" ] && [ "${msgtypes[$word]+set}" ]; then
msgtypes[$word]=seen
elif [ "${settings[$word]+set}" ]; then
settings[$word]=seen
if [ "$word" = msglvl ]; then
in_msglvl=1
else
in_msglvl=
fi
fi
done
if [ "$in_msglvl" ] && [ "${msgtypes[$prev]+set}" ]; then
# All msgtypes take an on/off argument
COMPREPLY=( $( compgen -W 'on off' -- "$cur" ) )
return
fi
case "$prev" in
advertise)
# Hex number
return ;;
autoneg)
COMPREPLY=( $( compgen -W 'on off' -- "$cur" ) )
return ;;
duplex)
COMPREPLY=( $( compgen -W 'half full' -- "$cur" ) )
return ;;
mdix)
COMPREPLY=( $( compgen -W 'auto on off' -- "$cur" ) )
return ;;
msglvl)
# Unsigned integer or msgtype
COMPREPLY=( $( compgen -W "${!msgtypes[*]}" -- "$cur" ) )
return ;;
port)
COMPREPLY=( $( compgen -W 'aui bnc fibre mii tp' -- "$cur" ) )
return ;;
phyad)
# Integer
return ;;
sopass)
_mac_addresses
return ;;
speed)
# Number
return ;;
wol)
# $cur is a set of wol type characters.
_ethtool_compgen_letterset p u m b a g s f d e
return ;;
xcvr)
COMPREPLY=( $( compgen -W 'internal external' -- "$cur" ) )
return ;;
lanes)
# Number
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
# Add settings not seen to completions
if [ "$in_msglvl" ]; then
local msgtype
for msgtype in "${!msgtypes[@]}"; do
if [ "${msgtypes[$msgtype]}" = notseen ]; then
comp_words+=( "$msgtype" )
fi
done
fi
COMPREPLY=( $( compgen -W "${comp_words[*]}" -- "$cur" ) )
}
# Completion for ethtool --change-eeprom
_ethtool_change_eeprom()
{
local -A settings=(
[length]=1
[magic]=1
[offset]=1
[value]=1
)
if [ "${settings[$prev]+set}" ]; then
# All settings take an unsigned integer argument
return
fi
# Remove settings which have been seen
local word
for word in "${words[@]:3:${#words[@]}-4}"; do
unset "settings[$word]"
done
COMPREPLY=( $( compgen -W "${!settings[*]}" -- "$cur" ) )
}
# Completion for ethtool --coalesce
_ethtool_coalesce()
{
local -A settings=(
[adaptive-rx]=1
[adaptive-tx]=1
[pkt-rate-high]=1
[pkt-rate-low]=1
[rx-frames]=1
[rx-frames-high]=1
[rx-frames-irq]=1
[rx-frames-low]=1
[rx-usecs]=1
[rx-usecs-high]=1
[rx-usecs-irq]=1
[rx-usecs-low]=1
[sample-interval]=1
[stats-block-usecs]=1
[tx-frames]=1
[tx-frames-high]=1
[tx-frames-irq]=1
[tx-frames-low]=1
[tx-usecs]=1
[tx-usecs-high]=1
[tx-usecs-irq]=1
[tx-usecs-low]=1
[tx-aggr-max-bytes]=1
[tx-aggr-max-frames]=1
[tx-aggr-time-usecs]=1
)
case "$prev" in
adaptive-rx|\
adaptive-tx)
COMPREPLY=( $( compgen -W 'on off' -- "$cur" ) )
return ;;
esac
if [ "${settings[$prev]+set}" ]; then
# Unsigned integer
return
fi
# Remove settings which have been seen
local word
for word in "${words[@]:3:${#words[@]}-4}"; do
unset "settings[$word]"
done
COMPREPLY=( $( compgen -W "${!settings[*]}" -- "$cur" ) )
}
# Completion for ethtool --config-nfc <devname> flow-type
_ethtool_config_nfc_flow_type()
{
if [ "$cword" -eq 4 ]; then
_ethtool_flow_type --spec
return
fi
case "$prev" in
context)
_ethtool_context
return ;;
dst|\
dst-mac|\
src)
# TODO: Complete only local for dst and remote for src
_mac_addresses
return ;;
dst-ip)
# Note: RX classification, so dst is usually local
case "${words[4]}" in
*4) _ip_addresses -4 return ;;
*6) _ip_addresses -6 return ;;
esac
return ;;
src-ip)
# Note: RX classification, so src is usually remote
# TODO: Remote IP addresses (ARP cache + /etc/hosts + ?)
return ;;
m|\
*-mask)
# MAC, IP, or integer bitmask
return ;;
esac
local -A settings=(
[action]=1
[context]=1
[loc]=1
[queue]=1
[vf]=1
)
if [ "${settings[$prev]+set}" ]; then
# Integer
return
fi
case "${words[4]}" in
ah4|\
esp4)
local -A fields=(
[dst-ip]=1
[dst-mac]=1
[spi]=1
[src-ip]=1
[tos]=1
[user-def]=1
[vlan-etype]=1
[vlan]=1
)
;;
ah6|\
esp6)
local -A fields=(
[dst-ip]=1
[dst-mac]=1
[spi]=1
[src-ip]=1
[tclass]=1
[user-def]=1
[vlan-etype]=1
[vlan]=1
)
;;
ether)
local -A fields=(
[dst]=1
[proto]=1
[src]=1
[user-def]=1
[vlan-etype]=1
[vlan]=1
)
;;
ip4)
local -A fields=(
[dst-ip]=1
[dst-mac]=1
[dst-port]=1
[l4data]=1
[l4proto]=1
[spi]=1
[src-ip]=1
[src-port]=1
[tos]=1
[user-def]=1
[vlan-etype]=1
[vlan]=1
)
;;
ip6)
local -A fields=(
[dst-ip]=1
[dst-mac]=1
[dst-port]=1
[l4data]=1
[l4proto]=1
[spi]=1
[src-ip]=1
[src-port]=1
[tclass]=1
[user-def]=1
[vlan-etype]=1
[vlan]=1
)
;;
sctp4|\
tcp4|\
udp4)
local -A fields=(
[dst-ip]=1
[dst-mac]=1
[dst-port]=1
[src-ip]=1
[src-port]=1
[tos]=1
[user-def]=1
[vlan-etype]=1
[vlan]=1
)
;;
sctp6|\
tcp6|\
udp6)
local -A fields=(
[dst-ip]=1
[dst-mac]=1
[dst-port]=1
[src-ip]=1
[src-port]=1
[tclass]=1
[user-def]=1
[vlan-etype]=1
[vlan]=1
)
;;
*)
return ;;
esac
if [ "${fields[$prev]+set}" ]; then
# Integer
return
fi
# If the previous 2 words were a field+value, suggest a mask
local mask=
if [ "${fields[${words[$cword-2]}]+set}" ]; then
mask="m ${words[$cword-2]}-mask"
fi
# Remove fields and settings which have been seen
local word
for word in "${words[@]:5:${#words[@]}-6}"; do
unset "fields[$word]" "settings[$word]"
done
# Remove mutually-exclusive options
if ! [ "${settings[action]+set}" ]; then
unset 'settings[queue]' 'settings[vf]'
fi
if ! [ "${settings[queue]+set}" ]; then
unset 'settings[action]'
fi
if ! [ "${settings[vf]+set}" ]; then
unset 'settings[action]'
fi
COMPREPLY=( $( compgen -W "$mask ${!fields[*]} ${!settings[*]}" -- "$cur" ) )
}
# Completion for ethtool --config-nfc
_ethtool_config_nfc()
{
if [ "$cword" -eq 3 ]; then
COMPREPLY=( $( compgen -W 'delete flow-type rx-flow-hash' -- "$cur" ) )
return
fi
case "${words[3]}" in
delete)
# Unsigned integer
return ;;
flow-type)
_ethtool_config_nfc_flow_type
return ;;
rx-flow-hash)
case "$cword" in
4)
_ethtool_flow_type --hash
return ;;
5)
_ethtool_compgen_letterset m v t s d f n r e
return ;;
6)
COMPREPLY=( $( compgen -W context -- "$cur" ) )
return ;;
7)
_ethtool_context
return ;;
esac
return ;;
esac
}
# Completion for ethtool --eeprom-dump
_ethtool_eeprom_dump()
{
local -A settings=(
[length]=1
[offset]=1
[raw]=1
)
if [ "$prev" = raw ]; then
COMPREPLY=( $( compgen -W 'on off' -- "$cur" ) )
return
fi
if [ "${settings[$prev]+set}" ]; then
# Unsigned integer argument
return
fi
# Remove settings which have been seen
local word
for word in "${words[@]:3:${#words[@]}-4}"; do
unset "settings[$word]"
done
COMPREPLY=( $( compgen -W "${!settings[*]}" -- "$cur" ) )
}
# Completion for ethtool --features
_ethtool_features()
{
local -A abbreviations=(
[generic-receive-offload]=gro
[generic-segmentation-offload]=gso
[large-receive-offload]=lro
[ntuple-filters]=ntuple
[receive-hashing]=rxhash
[rx-checksumming]=rx
[rx-vlan-offload]=rxvlan
[scatter-gather]=sg
[tcp-segmentation-offload]=tso
[tx-checksumming]=tx
[tx-vlan-offload]=txvlan
[udp-fragmentation-offload]=ufo
)
local -A features=()
local feature status fixed
# shellcheck disable=SC2034
while read -r feature status fixed; do
if [ -z "$feature" ]; then
# Ignore blank line from empty expansion in here-document
continue
fi
if [ "$feature" = Features ]; then
# Ignore heading
continue
fi
if [ "$fixed" = '[fixed]' ]; then
# Fixed features can't be changed
continue
fi
feature=${feature%:}
if [ "${abbreviations[$feature]+set}" ]; then
features[${abbreviations[$feature]}]=1
else
features[$feature]=1
fi
done <<ETHTOOL_FEATURES
$(PATH="$PATH:/sbin:/usr/sbin:/usr/local/sbin" \
ethtool --show-features "${words[2]}" 2>/dev/null)
ETHTOOL_FEATURES
if [ "${features[$prev]+set}" ]; then
COMPREPLY=( $( compgen -W 'on off' -- "$cur" ) )
return
fi
# Remove features which have been seen
local word
for word in "${words[@]:3:${#words[@]}-4}"; do
unset "features[$word]"
done
COMPREPLY=( $( compgen -W "${!features[*]}" -- "$cur" ) )
}
# Complete the current word as a kernel firmware file (for request_firmware)
# See https://www.kernel.org/doc/html/latest/driver-api/firmware/core.html
_ethtool_firmware()
{
local -a firmware_paths=(
/lib/firmware/updates/
/lib/firmware/
)
local release
if release=$( uname -r 2>/dev/null ); then
firmware_paths+=(
"/lib/firmware/updates/$release/"
"/lib/firmware/$release/"
)
fi
local fw_path_para
if fw_path_para=$( cat /sys/module/firmware_class/parameters/path 2>/dev/null ) \
&& [ -n "$fw_path_para" ]; then
firmware_paths+=( "$fw_path_para" )
fi
local -A firmware_files=()
local firmware_path
for firmware_path in "${firmware_paths[@]}"; do
local firmware_file
for firmware_file in "$firmware_path"*; do
if [ -f "$firmware_file" ]; then
firmware_files[${firmware_file##*/}]=1
fi
done
done
local IFS='
'
COMPREPLY=( $( compgen -W "${!firmware_files[*]}" -- "$cur" ) )
}
# Completion for ethtool --flash
_ethtool_flash()
{
if [ "$cword" -eq 3 ]; then
_ethtool_firmware
return
fi
}
# Completion for ethtool --get-dump
_ethtool_get_dump()
{
case "$cword" in
3)
COMPREPLY=( $( compgen -W data -- "$cur" ) )
return ;;
4)
# Output filename
local IFS='
'
COMPREPLY=( $( compgen -f -- "$cur" ) )
return ;;
esac
}
# Completion for ethtool --get-phy-tunable
_ethtool_get_phy_tunable()
{
if [ "$cword" -eq 3 ]; then
COMPREPLY=( $( compgen -W downshift -- "$cur" ) )
return
fi
}
# Completion for ethtool --module-info
_ethtool_module_info()
{
local -A settings=(
[hex]=1
[length]=1
[offset]=1
[raw]=1
)
case "$prev" in
hex|\
raw)
COMPREPLY=( $( compgen -W 'on off' -- "$cur" ) )
return ;;
esac
if [ "${settings[$prev]+set}" ]; then
# Unsigned integer argument
return
fi
# Remove settings which have been seen
local word
for word in "${words[@]:3:${#words[@]}-4}"; do
unset "settings[$word]"
done
COMPREPLY=( $( compgen -W "${!settings[*]}" -- "$cur" ) )
}
# Completion for ethtool --pause
_ethtool_pause()
{
local -A settings=(
[autoneg]=1
[rx]=1
[tx]=1
)
if [ "${settings[$prev]+set}" ]; then
COMPREPLY=( $( compgen -W 'on off' -- "$cur" ) )
return
fi
# Remove settings which have been seen
local word
for word in "${words[@]:3:${#words[@]}-4}"; do
unset "settings[$word]"
done
COMPREPLY=( $( compgen -W "${!settings[*]}" -- "$cur" ) )
}
# Completion for ethtool --per-queue
_ethtool_per_queue()
{
local -a subcommands=(
--coalesce
--show-coalesce
)
if [ "$cword" -eq 3 ]; then
COMPREPLY=( $( compgen -W "queue_mask ${subcommands[*]}" -- "$cur" ) )
return
fi
local sc_start=3
if [ "${words[3]}" = queue_mask ] ; then
case "$cword" in
4)
# Hex number
return ;;
5)
COMPREPLY=( $( compgen -W "${subcommands[*]}" -- "$cur" ) )
return ;;
esac
sc_start=5
fi
case "${words[$sc_start]}" in
--coalesce)
# Remove --per-queue args to match normal --coalesce invocation
local words=(
"${words[0]}"
--coalesce
"${words[2]}"
"${words[@]:$sc_start+1:${#words[@]}-$sc_start-1}"
)
_ethtool_coalesce
return ;;
--show-coalesce)
# No args
return ;;
esac
}
# Completion for ethtool --register-dump
_ethtool_register_dump()
{
local -A settings=(
[file]=1
[hex]=1
[raw]=1
)
case "$prev" in
hex|\
raw)
COMPREPLY=( $( compgen -W 'on off' -- "$cur" ) )
return ;;
file)
local IFS='
'
COMPREPLY=( $( compgen -f -- "$cur" ) )
return ;;
esac
# Remove settings which have been seen
local word
for word in "${words[@]:3:${#words[@]}-4}"; do
unset "settings[$word]"
done
COMPREPLY=( $( compgen -W "${!settings[*]}" -- "$cur" ) )
}
# Completion for ethtool --reset
_ethtool_reset()
{
if [ "$prev" = flags ]; then
# Unsigned integer
return
fi
local -A flag_names=(
[ap]=1
[dma]=1
[filter]=1
[irq]=1
[mac]=1
[mgmt]=1
[offload]=1
[phy]=1
[ram]=1
)
local -A all_flag_names=()
local flag_name
for flag_name in "${!flag_names[@]}"; do
all_flag_names[$flag_name]=1
all_flag_names[$flag_name-shared]=1
done
# Remove all_flag_names which have been seen
local any_dedicated=
local word
for word in "${words[@]:3:${#words[@]}-4}"; do
case "$word" in
all)
# Flags are always additive.
# Nothing to add after "all".
return ;;
dedicated)
any_dedicated=1
# "dedicated" sets all non-shared flags
for flag_name in "${!flag_names[@]}"; do
unset "all_flag_names[$flag_name]"
done
continue ;;
esac
if [ "${flag_names[$word]+set}" ]; then
any_dedicated=1
fi
unset "all_flag_names[$word]"
done
COMPREPLY=( $( compgen -W "${!all_flag_names[*]}" -- "$cur" ) )
# Although it is permitted to mix named and un-named flags or duplicate
# flags with "all" or "dedicated", it's not likely intentional.
# Reconsider if a real use-case (or good consistency argument) is found.
if [ "$cword" -eq 3 ]; then
COMPREPLY+=( all dedicated flags )
elif [ -z "$any_dedicated" ]; then
COMPREPLY+=( dedicated )
fi
}
# Completion for ethtool --rxfh
_ethtool_rxfh()
{
local -A settings=(
[context]=1
[default]=1
[delete]=1
[equal]=1
[hfunc]=1
[hkey]=1
[weight]=1
)
case "$prev" in
context)
_ethtool_context
# "new" to create a new context
COMPREPLY+=( new )
return ;;
equal)
# Positive integer
return ;;
hfunc)
# Complete available RSS hash functions
COMPREPLY=(
$(_ethtool_get_names_in_section 'RSS hash function' \
--show-rxfh "${words[2]}")
)
return ;;
hkey)
# Pairs of hex digits separated by :
return ;;
weight)
# Non-negative integer
return ;;
esac
local word
for word in "${words[@]:3:${#words[@]}-4}"; do
# Remove settings which have been seen
unset "settings[$word]"
# Remove settings which are mutually-exclusive with seen settings
case "$word" in
context)
unset 'settings[default]'
;;
default)
unset \
'settings[context]' \
'settings[delete]' \
'settings[equal]' \
'settings[weight]'
;;
delete)
unset \
'settings[default]' \
'settings[equal]' \
'settings[hkey]' \
'settings[weight]'
;;
equal)
unset \
'settings[default]' \
'settings[delete]' \
'settings[weight]'
;;
hkey)
unset 'settings[delete]'
;;
weight)
unset \
'settings[default]' \
'settings[delete]' \
'settings[equal]'
;;
esac
done
COMPREPLY=( $( compgen -W "${!settings[*]}" -- "$cur" ) )
}
# Completion for ethtool --set-channels
_ethtool_set_channels()
{
local -A settings=(
[combined]=1
[other]=1
[rx]=1
[tx]=1
)
if [ "${settings[$prev]+set}" ]; then
# Unsigned integer argument
return
fi
# Remove settings which have been seen
local word
for word in "${words[@]:3:${#words[@]}-4}"; do
unset "settings[$word]"
done
COMPREPLY=( $( compgen -W "${!settings[*]}" -- "$cur" ) )
}
# Completion for ethtool --set-eee
_ethtool_set_eee()
{
local -A settings=(
[advertise]=1
[eee]=1
[tx-lpi]=1
[tx-timer]=1
)
case "$prev" in
advertise|\
tx-timer)
# Unsigned integer
return ;;
eee|\
tx-lpi)
COMPREPLY=( $( compgen -W 'on off' -- "$cur" ) )
return ;;
esac
# Remove settings which have been seen
local word
for word in "${words[@]:3:${#words[@]}-4}"; do
unset "settings[$word]"
done
COMPREPLY=( $( compgen -W "${!settings[*]}" -- "$cur" ) )
}
# Completion for ethtool --set-fec
_ethtool_set_fec()
{
if [ "$cword" -eq 3 ]; then
COMPREPLY=( $( compgen -W encoding -- "$cur" ) )
return
fi
local -A modes=(
[auto]=auto
[rs]=RS
[off]=off
[baser]=BaseR
)
# Remove modes which have been seen
local word
for word in "${words[@]:3:${#words[@]}-4}"; do
# ethtool recognizes modes case-insensitively
unset "modes[${word,,}]"
done
_ethtool_compgen_nocase "${modes[@]}"
}
# Completion for ethtool --set-phy-tunable
_ethtool_set_phy_tunable()
{
case "$cword" in
3)
COMPREPLY=( $( compgen -W downshift -- "$cur" ) )
return ;;
4)
COMPREPLY=( $( compgen -W 'on off' -- "$cur" ) )
return ;;
5)
COMPREPLY=( $( compgen -W count -- "$cur" ) )
return ;;
esac
}
# Completion for ethtool --set-priv-flags
_ethtool_set_priv_flags()
{
if [ $(( cword % 2 )) -eq 0 ]; then
COMPREPLY=( $( compgen -W 'on off' -- "$cur" ) )
return
fi
# Get available private flags
local -A flags=()
local flag
while IFS= read -r flag; do
# Ignore blank line from empty here-document
if [ -n "$flag" ]; then
flags[$flag]=1
fi
done <<ETHTOOL_PRIV_FLAGS
$(_ethtool_get_names_in_section \
'Private flags for [[:graph:]]*' --show-priv-flags "${words[2]}")
ETHTOOL_PRIV_FLAGS
# Remove flags which have been seen
local word
for word in "${words[@]:3:${#words[@]}-4}"; do
unset "flags[$word]"
done
COMPREPLY=( $( compgen -W "${!flags[*]}" -- "$cur" ) )
}
# Completion for ethtool --set-ring
_ethtool_set_ring()
{
local -A settings=(
[rx-jumbo]=1
[rx-mini]=1
[rx]=1
[tx]=1
)
if [ "${settings[$prev]+set}" ]; then
# Unsigned integer argument
return
fi
# Remove settings which have been seen
local word
for word in "${words[@]:3:${#words[@]}-4}"; do
unset "settings[$word]"
done
COMPREPLY=( $( compgen -W "${!settings[*]}" -- "$cur" ) )
}
# Completion for ethtool --show-nfc
_ethtool_show_nfc()
{
if [ "$cword" -eq 3 ]; then
COMPREPLY=( $( compgen -W 'rule rx-flow-hash' -- "$cur" ) )
return
fi
case "${words[3]}" in
rule)
if [ "$cword" -eq 4 ]; then
COMPREPLY=(
$(PATH="$PATH:/sbin:/usr/sbin:/usr/local/sbin" \
ethtool --show-nfc "${words[2]}" 2>/dev/null |
command sed -n 's/^Filter:[[:space:]]*\([0-9]*\)$/\1/p')
)
fi
return ;;
rx-flow-hash)
case "$cword" in
4)
_ethtool_flow_type --hash
return ;;
5)
COMPREPLY=( $( compgen -W context -- "$cur" ) )
return ;;
6)
_ethtool_context
return ;;
esac
;;
esac
}
# Completion for ethtool --show-rxfh
_ethtool_show_rxfh()
{
case "$cword" in
3)
COMPREPLY=( $( compgen -W context -- "$cur" ) )
return ;;
4)
_ethtool_context
return ;;
esac
}
# Completion for ethtool --test
_ethtool_test()
{
if [ "$cword" -eq 3 ]; then
COMPREPLY=( $( compgen -W 'external_lb offline online' -- "$cur" ) )
return
fi
}
# Completion for ethtool --set-module
_ethtool_set_module()
{
local -A settings=(
[power-mode-policy]=1
)
case "$prev" in
power-mode-policy)
COMPREPLY=( $( compgen -W 'high auto' -- "$cur" ) )
return ;;
esac
# Remove settings which have been seen
local word
for word in "${words[@]:3:${#words[@]}-4}"; do
unset "settings[$word]"
done
COMPREPLY=( $( compgen -W "${!settings[*]}" -- "$cur" ) )
}
# Completion for ethtool --flash-module-firmware
_ethtool_flash_module_firmware()
{
local -A settings=(
[file]=1
[pass]=1
)
case "$prev" in
file)
_ethtool_firmware
return ;;
pass)
# Number
return ;;
esac
# Remove settings which have been seen
local word
for word in "${words[@]:3:${#words[@]}-4}"; do
unset "settings[$word]"
done
COMPREPLY=( $( compgen -W "${!settings[*]}" -- "$cur" ) )
}
# Complete any ethtool command
_ethtool()
{
local cur prev words cword
_init_completion || return
# Per "Contributing to bash-completion", complete non-duplicate long opts
local -A suggested_funcs=(
[--change-eeprom]=change_eeprom
[--change]=change
[--coalesce]=coalesce
[--config-nfc]=config_nfc
[--driver]=devname
[--dump-module-eeprom]=module_info
[--eeprom-dump]=eeprom_dump
[--features]=features
[--flash]=flash
[--get-dump]=get_dump
[--get-phy-tunable]=get_phy_tunable
[--identify]=devname
[--module-info]=module_info
[--negotiate]=devname
[--offload]=features
[--pause]=pause
[--per-queue]=per_queue
[--phy-statistics]=devname
[--register-dump]=register_dump
[--reset]=reset
[--set-channels]=set_channels
[--set-dump]=devname
[--set-eee]=set_eee
[--set-fec]=set_fec
[--set-phy-tunable]=set_phy_tunable
[--set-priv-flags]=set_priv_flags
[--set-ring]=set_ring
[--set-rxfh-indir]=rxfh
[--show-channels]=devname
[--show-coalesce]=devname
[--show-eee]=devname
[--show-features]=devname
[--show-fec]=devname
[--show-nfc]=show_nfc
[--show-offload]=devname
[--show-pause]=devname
[--show-permaddr]=devname
[--show-priv-flags]=devname
[--show-ring]=devname
[--show-rxfh]=show_rxfh
[--show-time-stamping]=devname
[--statistics]=devname
[--test]=test
[--set-module]=set_module
[--show-module]=devname
[--flash-module-firmware]=flash_module_firmware
)
local -A other_funcs=(
[--config-ntuple]=config_nfc
[--rxfh]=rxfh
[--show-ntuple]=show_nfc
[--show-rxfh-indir]=devname
[-A]=pause
[-C]=coalesce
[-E]=change_eeprom
[-G]=set_ring
[-K]=features
[-L]=set_channels
[-N]=config_nfc
[-P]=devname
[-Q]=per_queue
[-S]=devname
[-T]=devname
[-U]=config_nfc
[-W]=devname
[-X]=rxfh
[-a]=devname
[-c]=devname
[-d]=register_dump
[-e]=eeprom_dump
[-f]=flash
[-g]=devname
[-i]=devname
[-k]=devname
[-l]=devname
[-m]=module_info
[-n]=show_nfc
[-p]=devname
[-r]=devname
[-s]=change
[-t]=test
[-u]=show_nfc
[-w]=get_dump
[-x]=devname
)
if [ "$cword" -le 1 ]; then
_available_interfaces
COMPREPLY+=(
$( compgen -W "--help --version ${!suggested_funcs[*]}" -- "$cur" )
)
return
fi
local func=${suggested_funcs[${words[1]}]-${other_funcs[${words[1]}]-}}
if [ "$func" ]; then
# All sub-commands have devname as their first argument
if [ "$cword" -eq 2 ]; then
_available_interfaces
return
fi
if [ "$func" != devname ]; then
"_ethtool_$func"
fi
fi
} &&
complete -F _ethtool ethtool
# ex: filetype=sh sts=8 sw=8 ts=8 noet
| 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 |
|