__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# ssh(1) completion -*- shell-script -*-
_comp_cmd_ssh__compgen_queries()
{
local -a queries
_comp_compgen -v queries -i ssh query "$1" help ||
queries=(cipher cipher-auth mac kex key key-cert key-plain key-sig
protocol-version compression sig ciphers macs kexalgorithms
pubkeyacceptedkeytypes hostkeyalgorithms hostbasedkeytypes
hostbasedacceptedkeytypes)
_comp_compgen -c "${cur,,}" -U queries -- -W '"${queries[@]}" help'
}
# @since 2.12
_comp_xfunc_ssh_compgen_query()
{
_comp_cmd_ssh__compgen_query ssh "$1"
}
# @deprecated 2.12 use _comp_xfunc_ssh_compgen_query
_ssh_query()
{
local -a queries=()
_comp_compgen -v queries -i ssh query "${1:-ssh}" "$2" &&
printf "%s\n" "${queries[@]}"
}
_comp_cmd_ssh__compgen_query()
{
_comp_compgen_split -- "$("$1" -Q "$2" 2>/dev/null)"
}
_comp_cmd_ssh__compgen_ciphers()
{
local -a queries
_comp_compgen -v queries -i ssh query "$1" cipher ||
queries=(3des-cbc aes128-cbc aes192-cbc aes256-cbc aes128-ctr
aes192-ctr aes256-ctr arcfour128 arcfour256 arcfour blowfish-cbc
cast128-cbc)
_comp_compgen -U queries -- -W '"${queries[@]}"'
}
_comp_cmd_ssh__compgen_macs()
{
local -a queries
_comp_compgen -v queries -i ssh query "$1" mac ||
queries=(hmac-md5 hmac-sha1 [email protected] hmac-ripemd160
hmac-sha1-96 hmac-md5-96)
_comp_compgen -U queries -- -W '"${queries[@]}"'
}
# @since 2.12
_comp_xfunc_ssh_compgen_options()
{
# curl --silent https://raw.githubusercontent.com/openssh/openssh-portable/master/ssh_config.5 | _comp_awk '$1==".It" && $2=="Cm" && $3!="Host" && $3!="Match" {print " "$3}' | sort
local _opts=(
AddKeysToAgent AddressFamily BatchMode BindAddress BindInterface
CanonicalDomains CanonicalizeFallbackLocal CanonicalizeHostname
CanonicalizeMaxDots CanonicalizePermittedCNAMEs CASignatureAlgorithms
CertificateFile ChallengeResponseAuthentication CheckHostIP Ciphers
ClearAllForwardings Compression ConnectionAttempts ConnectTimeout
ControlMaster ControlPath ControlPersist DynamicForward
EnableSSHKeysign EscapeChar ExitOnForwardFailure FingerprintHash
ForwardAgent ForwardX11 ForwardX11Timeout ForwardX11Trusted
GatewayPorts GlobalKnownHostsFile GSSAPIAuthentication
GSSAPIDelegateCredentials HashKnownHosts HostbasedAuthentication
HostbasedKeyTypes HostKeyAlgorithms HostKeyAlias Hostname
IdentitiesOnly IdentityAgent IdentityFile IgnoreUnknown Include IPQoS
KbdInteractiveAuthentication KbdInteractiveDevices KexAlgorithms
LocalCommand LocalForward LogLevel MACs
NoHostAuthenticationForLocalhost NumberOfPasswordPrompts
PasswordAuthentication PermitLocalCommand PKCS11Provider Port
PreferredAuthentications ProxyCommand ProxyJump ProxyUseFdpass
PubkeyAcceptedAlgorithms PubkeyAuthentication RekeyLimit RemoteCommand
RemoteForward RequestTTY RequiredRSASize RevokedHostKeys
SecurityKeyProvider SendEnv ServerAliveCountMax ServerAliveInterval
SetEnv StreamLocalBindMask StreamLocalBindUnlink StrictHostKeyChecking
SyslogFacility TCPKeepAlive Tunnel TunnelDevice UpdateHostKeys User
UserKnownHostsFile VerifyHostKeyDNS VisualHostKey XAuthLocation
)
# Selected old ones
_opts+=(
GSSAPIKeyExchange GSSAPIRenewalForcesRekey GSSAPIServerIdentity
GSSAPITrustDns PubkeyAcceptedKeyTypes SmartcardDevice UsePrivilegedPort
)
local -a protocols
_comp_compgen -v protocols -i ssh query ssh protocol-version
if [[ ${protocols[*]-} == *1* ]]; then
_opts+=(Cipher CompressionLevel Protocol RhostsRSAAuthentication
RSAAuthentication)
fi
_comp_unlocal protocols
compopt -o nospace
_comp_compgen_split -l -- "$(
shopt -s nocasematch
local option
for option in "${_opts[@]}"; do
[[ $option == "$cur"* ]] && printf '%s=\n' "$option"
done
)"
}
_comp_deprecate_func 2.12 _ssh_options _comp_xfunc_ssh_compgen_options
# Complete a ssh suboption (like ForwardAgent=y<tab>)
# @param $1 the ssh executable to invoke
# @param $2 the string to complete including the equal sign
# Not all suboptions are completed.
# Doesn't handle comma-separated lists.
_comp_cmd_ssh__compgen_suboption()
{
# Split into subopt and subval
local _prev=${2%%=*} cur=${2#*=}
case ${_prev,,} in
batchmode | canonicaldomains | canonicalizefallbacklocal | \
challengeresponseauthentication | checkhostip | \
clearallforwardings | controlpersist | compression | \
enablesshkeysign | exitonforwardfailure | forwardagent | \
forwardx11 | forwardx11trusted | gatewayports | \
gssapiauthentication | gssapikeyexchange | \
gssapidelegatecredentials | gssapirenewalforcesrekey | \
gssapitrustdns | hashknownhosts | hostbasedauthentication | \
identitiesonly | kbdinteractiveauthentication | \
kbdinteractivedevices | nohostauthenticationforlocalhost | \
passwordauthentication | permitlocalcommand | proxyusefdpass | \
pubkeyauthentication | rhostsrsaauthentication | \
rsaauthentication | streamlocalbindunlink | \
tcpkeepalive | useprivilegedport | visualhostkey)
_comp_compgen -- -W 'yes no'
;;
addkeystoagent)
_comp_compgen -- -W 'yes ask confirm no'
;;
addressfamily)
_comp_compgen -- -W 'any inet inet6'
;;
bindaddress)
_comp_compgen_ip_addresses
;;
canonicalizehostname)
_comp_compgen -- -W 'yes no always'
;;
identityfile)
_comp_xfunc_ssh_compgen_identityfile
;;
*file | identityagent | include | controlpath | revokedhostkeys | \
xauthlocation)
_comp_compgen_filedir
;;
casignaturealgorithms)
_comp_cmd_ssh__compgen_query "$1" sig
;;
cipher)
_comp_compgen -- -W 'blowfish des 3des'
;;
ciphers)
_comp_cmd_ssh__compgen_ciphers "$1"
;;
controlmaster)
_comp_compgen -- -W 'yes ask auto autoask no'
;;
compressionlevel)
_comp_compgen -- -W '{1..9}'
;;
fingerprinthash)
_comp_compgen -- -W 'md5 sha256'
;;
ipqos)
_comp_compgen -- -W 'af1{1..4} af2{2..3} af3{1..3} af4{1..3}
cs{0..7} ef lowdelay throughput reliability'
;;
hostbasedkeytypes | hostkeyalgorithms)
_comp_cmd_ssh__compgen_query "$1" key
;;
kexalgorithms)
_comp_cmd_ssh__compgen_query "$1" kex
;;
loglevel)
_comp_compgen -- -W 'QUIET FATAL ERROR INFO VERBOSE DEBUG{,1,2,3}'
;;
macs)
_comp_cmd_ssh__compgen_macs "$1"
;;
pkcs11provider)
_comp_compgen_filedir so
;;
preferredauthentications)
_comp_compgen -- -W 'gssapi-with-mic host-based publickey
keyboard-interactive password'
;;
protocol)
local -a protocols
_comp_compgen -v protocols -i ssh query "$1" protocol-version
[[ ${protocols-} ]] || protocols=(1 2)
if ((${#protocols[@]} > 1)); then
_comp_compgen -- -W '"${protocols[@]}"'
fi
;;
proxyjump)
_comp_compgen_known_hosts -a ${configfile:+-F "$configfile"} -- "$cur"
;;
proxycommand | remotecommand | localcommand)
_comp_compgen_commands
;;
pubkeyacceptedalgorithms | pubkeyacceptedkeytypes)
_comp_cmd_ssh__compgen_query "$1" key
;;
requesttty)
_comp_compgen -- -W 'no yes force auto'
;;
requiredrsasize)
_comp_compgen -- -W '1024 2048 3072 4096 7680 15360'
;;
stricthostkeychecking)
_comp_compgen -- -W 'accept-new ask no off'
;;
syslogfacility)
_comp_compgen -- -W 'DAEMON USER AUTH LOCAL{0..7}'
;;
tunnel)
_comp_compgen -- -W 'yes no point-to-point ethernet'
;;
updatehostkeys | verifyhostkeydns)
_comp_compgen -- -W 'yes no ask'
;;
esac
return 0
}
# Try to complete -o SubOptions=
#
# Returns 0 if the completion was handled or non-zero otherwise.
# @since 2.12
_comp_xfunc_ssh_compgen_suboption_check()
{
_comp_cmd_ssh__compgen_suboption_check ssh
}
# @param $1 the ssh executable to invoke
_comp_cmd_ssh__compgen_suboption_check()
{
# Get prev and cur words without splitting on =
local cur prev
_comp_get_words -n := cur prev
if [[ $cur == *=* && $prev == -*o ]]; then
_comp_unlocal prev
_comp_cmd_ssh__compgen_suboption "$1" "$cur"
return $?
fi
return 1
}
# @deprecated 2.12 use `_comp_xfunc_ssh_compgen_suboption_check` instead
_ssh_suboption_check()
{
_comp_cmd_ssh__compgen_suboption_check "${1:-ssh}"
}
# Search COMP_WORDS for '-F configfile' or '-Fconfigfile' argument
# @var[out] configfile Found configfile, if any
_comp_cmd_ssh__configfile()
{
configfile=""
set -- "${words[@]}"
while (($# > 0)); do
if [[ $1 == -F* ]]; then
local REPLY
if ((${#1} > 2)); then
_comp_dequote "${1:2}" && configfile=$REPLY
else
shift
[[ ${1-} ]] && _comp_dequote "$1" && configfile=$REPLY
fi
break
fi
shift
done
}
# With $1 set, look for public key files, else private
# @since 2.12
# shellcheck disable=SC2120
_comp_xfunc_ssh_compgen_identityfile()
{
local cur=$cur tmp
[[ ! $cur && -d ~/.ssh ]] && cur=~/.ssh/id
_comp_compgen -v tmp -c "$cur" filedir &&
_comp_compgen -U tmp -- -W '"${tmp[@]}"' -X "${1:+!}*.pub"
}
_comp_deprecate_func 2.12 _ssh_identityfile _comp_xfunc_ssh_compgen_identityfile
_comp_cmd_ssh()
{
local cur prev words cword comp_args
_comp_initialize -n : -- "$@" || return
local configfile
_comp_cmd_ssh__configfile
_comp_cmd_ssh__compgen_suboption_check "$1" && return
local ipvx
# Keep cases sorted the same they're in ssh's usage message
# (but do group ones with same arg completion)
case $prev in
-*B)
_comp_compgen_available_interfaces -a
return
;;
-*b)
_comp_compgen_ip_addresses
return
;;
-*c)
_comp_cmd_ssh__compgen_ciphers "$1"
return
;;
-*[DeLpRW])
return
;;
-*[EFS])
_comp_compgen_filedir
return
;;
-*I)
_comp_compgen_filedir so
return
;;
-*i)
_comp_xfunc_ssh_compgen_identityfile
return
;;
-*J)
_comp_compgen_known_hosts -a ${configfile:+-F "$configfile"} -- "$cur"
return
;;
-*l)
_comp_compgen -- -u
return
;;
-*m)
_comp_cmd_ssh__compgen_macs "$1"
return
;;
-*O)
_comp_compgen -- -W 'check forward cancel exit stop'
return
;;
-*o)
_comp_xfunc_ssh_compgen_options "$1"
return
;;
-*Q)
_comp_cmd_ssh__compgen_queries "$1"
return
;;
-*w)
_comp_compgen_available_interfaces
return
;;
-*4*)
ipvx=-4
;;
-*6*)
ipvx=-6
;;
esac
if [[ $cur == -F* ]]; then
_comp_compgen -c "${cur#-F}" filedir
# Prefix completions with '-F'
COMPREPLY=("${COMPREPLY[@]/#/-F}")
elif [[ $cur == -* ]]; then
_comp_compgen_usage
else
local REPLY
# Keep glob sort in sync with cases above
_comp_count_args -n "=" -a "-*[BbcDeLpRWEFSIiJlmOoQw]"
if ((REPLY > 1)); then
compopt -o filenames
_comp_compgen_commands
else
_comp_compgen_known_hosts ${ipvx-} -a ${configfile:+-F "$configfile"} \
-- "$cur"
fi
fi
} &&
shopt -u hostcomplete &&
complete -F _comp_cmd_ssh ssh slogin autossh sidedoor
# sftp(1) completion
#
_comp_cmd_sftp()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local configfile
_comp_cmd_ssh__configfile
# Prefer `ssh` from same dir for resolving options, etc
local pathcmd
pathcmd=$(type -P -- "$1") && local PATH=${pathcmd%/*}:$PATH
_comp_xfunc_ssh_compgen_suboption_check && return
local ipvx=
case $prev in
-*[BDlPRs])
return
;;
-*[bF])
_comp_compgen_filedir
return
;;
-*i)
_comp_xfunc_ssh_compgen_identityfile
return
;;
-*c)
_comp_cmd_ssh__compgen_ciphers
return
;;
-*J)
_comp_compgen_known_hosts -a ${configfile:+-F "$configfile"} -- "$cur"
return
;;
-*o)
_comp_xfunc_ssh_compgen_options
return
;;
-*S)
_comp_compgen_commands
return
;;
-*4*)
ipvx=-4
;;
-*6*)
ipvx=-6
;;
esac
if [[ $cur == -F* ]]; then
_comp_compgen -c "${cur#-F}" filedir
# Prefix completions with '-F'
COMPREPLY=("${COMPREPLY[@]/#/-F}")
elif [[ $cur == -* ]]; then
_comp_compgen_usage
else
_comp_compgen_known_hosts ${ipvx:+"$ipvx"} -a ${configfile:+-F "$configfile"} -- "$cur"
fi
} &&
shopt -u hostcomplete && complete -F _comp_cmd_sftp sftp
# things we want to backslash escape in scp paths
# shellcheck disable=SC2089
_comp_cmd_scp__path_esc='[][(){}<>"'"'"',:;^&!$=?`\\|[:space:]]'
# Complete remote files with ssh. Returns paths escaped with three backslashes
# (unless -l option is provided).
# Options:
# -d Complete on dirs only.
# -l Return paths escaped with one backslash instead of three.
# @since 2.12
# shellcheck disable=SC2120
_comp_xfunc_scp_compgen_remote_files()
{
local _dirs_only=""
local _less_escaping=""
local _flag OPTIND=1 OPTARG="" OPTERR=0
while getopts "dl" _flag "$@"; do
case $_flag in
d) _dirs_only=set ;;
l) _less_escaping=set ;;
*)
echo "bash_completion: $FUNCNAME: usage error: $*" >&2
return 1
;;
esac
done
# remove backslash escape from the first colon
local cur=${cur/\\:/:}
local _userhost=${cur%%?(\\):*}
local _path=${cur#*:}
# unescape (3 backslashes to 1 for chars we escaped)
# shellcheck disable=SC2090
_path=$(command sed -e 's/\\\\\\\('"$_comp_cmd_scp__path_esc"'\)/\\\1/g' <<<"$_path")
# default to home dir of specified user on remote host
if [[ ! $_path ]]; then
_path=$(ssh -o 'Batchmode yes' "$_userhost" pwd 2>/dev/null)
fi
local _escape_replacement='\\\\\\&'
if [[ $_less_escaping ]]; then
_escape_replacement='\\&'
fi
local _files
if [[ $_dirs_only ]]; then
# escape problematic characters; remove non-dirs
# shellcheck disable=SC2090
_files=$(ssh -o 'Batchmode yes' "$_userhost" \
command ls -aF1dL "$_path*" 2>/dev/null |
command sed -e 's/'"$_comp_cmd_scp__path_esc"'/'"$_escape_replacement"'/g' -e '/[^\/]$/d')
else
# escape problematic characters; remove executables, aliases, pipes
# and sockets; add space at end of file names
# shellcheck disable=SC2090
_files=$(ssh -o 'Batchmode yes' "$_userhost" \
command ls -aF1dL "$_path*" 2>/dev/null |
command sed -e 's/'"$_comp_cmd_scp__path_esc"'/'"$_escape_replacement"'/g' -e 's/[*@|=]$//g' \
-e 's/[^\/]$/& /g')
fi
_comp_compgen -R split -l -- "$_files"
}
# @deprecated 2.12 use `_comp_compgen -ax ssh remote_files` instead
_scp_remote_files()
{
_comp_compgen -ax scp remote_files
}
# This approach is used instead of _comp_compgen_filedir to get a space
# appended after local file/dir completions, and -o nospace retained for
# others. If first arg is -d, complete on directory names only. The next arg
# is an optional prefix to add to returned completions.
# @since 2.12
_comp_xfunc_scp_compgen_local_files()
{
local _dirsonly=""
if [[ ${1-} == -d ]]; then
_dirsonly=set
shift
fi
local files
_comp_expand_glob files '"$cur"*' || return 0
if [[ $_dirsonly ]]; then
_comp_compgen -U files split -l -- "$(
command ls -aF1dL "${files[@]}" 2>/dev/null |
command sed -e "s/$_comp_cmd_scp__path_esc/\\\\&/g" \
-e '/[^\/]$/d' -e "s/^/${1-}/"
)"
else
_comp_compgen -U files split -l -- "$(
command ls -aF1dL "${files[@]}" 2>/dev/null |
command sed -e "s/$_comp_cmd_scp__path_esc/\\\\&/g" \
-e 's/[*@|=]$//g' -e 's/[^\/]$/& /g' -e "s/^/${1-}/"
)"
fi
}
# @deprecated 2.12
_scp_local_files()
{
_comp_compgen -ax scp local_files "$@"
}
# scp(1) completion
#
_comp_cmd_scp()
{
local cur prev words cword comp_args
_comp_initialize -n : -- "$@" || return
local configfile
_comp_cmd_ssh__configfile
# Prefer `ssh` from same dir for resolving options, remote files, etc
local pathcmd
pathcmd=$(type -P -- "$1") && local PATH=${pathcmd%/*}:$PATH
_comp_xfunc_ssh_compgen_suboption_check && {
((${#COMPREPLY[@]})) && COMPREPLY=("${COMPREPLY[@]/%/ }")
return
}
local ipvx
case $prev in
-*c)
_comp_cmd_ssh__compgen_ciphers
COMPREPLY=("${COMPREPLY[@]/%/ }")
return
;;
-*F)
_comp_compgen_filedir
compopt +o nospace
return
;;
-*i)
_comp_xfunc_ssh_compgen_identityfile
compopt +o nospace
return
;;
-*J)
_comp_compgen_known_hosts -a ${configfile:+-F "$configfile"} -- "$cur"
return
;;
-*[lP])
return
;;
-*o)
_comp_xfunc_ssh_compgen_options
return
;;
-*S)
compopt +o nospace
_comp_compgen_commands
return
;;
-*4*)
ipvx=-4
;;
-*6*)
ipvx=-6
;;
esac
_comp_expand || return
case $cur in
!(*:*)/* | [.~]*) ;; # looks like a path
*:*)
_comp_xfunc_scp_compgen_remote_files
return
;;
esac
local prefix
if [[ $cur == -F* ]]; then
cur=${cur#-F}
prefix=-F
else
case $cur in
-*)
_comp_compgen_usage
COMPREPLY=("${COMPREPLY[@]/%/ }")
return
;;
*)
if ! _comp_looks_like_path "$cur"; then
_comp_compgen_known_hosts ${ipvx-} -c -a \
${configfile:+-F "$configfile"} -- "$cur"
fi
;;
esac
fi
_comp_compgen -ax scp local_files "${prefix-}"
} &&
complete -F _comp_cmd_scp -o nospace scp
# ex: filetype=sh
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| 2to3 | File | 994 B | 0644 |
|
| 7z | File | 3.88 KB | 0644 |
|
| 7za | File | 3.88 KB | 0644 |
|
| 7zr | File | 3.88 KB | 0644 |
|
| 7zz | File | 3.88 KB | 0644 |
|
| 7zzs | File | 3.88 KB | 0644 |
|
| _adb | File | 1.76 KB | 0644 |
|
| _airflow | File | 508 B | 0644 |
|
| _allero | File | 349 B | 0644 |
|
| _alp | File | 349 B | 0644 |
|
| _ansible | File | 508 B | 0644 |
|
| _ansible-config | File | 508 B | 0644 |
|
| _ansible-console | File | 508 B | 0644 |
|
| _ansible-doc | File | 508 B | 0644 |
|
| _ansible-galaxy | File | 508 B | 0644 |
|
| _ansible-inventory | File | 508 B | 0644 |
|
| _ansible-playbook | File | 508 B | 0644 |
|
| _ansible-pull | File | 508 B | 0644 |
|
| _ansible-vault | File | 508 B | 0644 |
|
| _apko | File | 349 B | 0644 |
|
| _aqua | File | 349 B | 0644 |
|
| _arduino-cli | File | 349 B | 0644 |
|
| _argc | File | 292 B | 0644 |
|
| _argo | File | 349 B | 0644 |
|
| _atlas | File | 349 B | 0644 |
|
| _atmos | File | 349 B | 0644 |
|
| _bao | File | 298 B | 0644 |
|
| _bashbot | File | 349 B | 0644 |
|
| _black | File | 494 B | 0644 |
|
| _blackd | File | 494 B | 0644 |
|
| _bosh | File | 349 B | 0644 |
|
| _buf | File | 349 B | 0644 |
|
| _caddy | File | 349 B | 0644 |
|
| _cal | File | 872 B | 0644 |
|
| _cargo | File | 372 B | 0644 |
|
| _chamber | File | 349 B | 0644 |
|
| _changie | File | 349 B | 0644 |
|
| _chezmoi | File | 349 B | 0644 |
|
| _chfn | File | 238 B | 0644 |
|
| _chsh | File | 1.03 KB | 0644 |
|
| _cilium | File | 349 B | 0644 |
|
| _cloudquery | File | 349 B | 0644 |
|
| _clusterctl | File | 349 B | 0644 |
|
| _cmctl | File | 349 B | 0644 |
|
| _coder | File | 308 B | 0644 |
|
| _colima | File | 349 B | 0644 |
|
| _conda | File | 508 B | 0644 |
|
| _conform | File | 349 B | 0644 |
|
| _conftest | File | 349 B | 0644 |
|
| _constellation | File | 349 B | 0644 |
|
| _consul | File | 298 B | 0644 |
|
| _container-structure-test | File | 349 B | 0644 |
|
| _cosign | File | 349 B | 0644 |
|
| _crane | File | 349 B | 0644 |
|
| _crc | File | 349 B | 0644 |
|
| _crictl | File | 349 B | 0644 |
|
| _ctlptl | File | 349 B | 0644 |
|
| _cue | File | 349 B | 0644 |
|
| _cz | File | 508 B | 0644 |
|
| _dagger | File | 349 B | 0644 |
|
| _dapr | File | 349 B | 0644 |
|
| _dasel | File | 349 B | 0644 |
|
| _datree | File | 349 B | 0644 |
|
| _deck | File | 349 B | 0644 |
|
| _delta | File | 298 B | 0644 |
|
| _deno | File | 278 B | 0644 |
|
| _depot | File | 349 B | 0644 |
|
| _devspace | File | 349 B | 0644 |
|
| _diesel | File | 278 B | 0644 |
|
| _dlv | File | 349 B | 0644 |
|
| _dmesg | File | 856 B | 0644 |
|
| _docker | File | 349 B | 0644 |
|
| _dprint | File | 278 B | 0644 |
|
| _driftctl | File | 349 B | 0644 |
|
| _dyff | File | 349 B | 0644 |
|
| _eject | File | 823 B | 0644 |
|
| _esc | File | 349 B | 0644 |
|
| _flamegraph | File | 282 B | 0644 |
|
| _flask | File | 494 B | 0644 |
|
| _flux | File | 349 B | 0644 |
|
| _furyctl | File | 349 B | 0644 |
|
| _fx | File | 298 B | 0644 |
|
| _gaiacli | File | 266 B | 0644 |
|
| _gaiad | File | 266 B | 0644 |
|
| _gardenctl | File | 349 B | 0644 |
|
| _gcrane | File | 349 B | 0644 |
|
| _gh | File | 292 B | 0644 |
|
| _gh-label | File | 349 B | 0644 |
|
| _ghorg | File | 349 B | 0644 |
|
| _git-bump | File | 349 B | 0644 |
|
| _gitconfig | File | 349 B | 0644 |
|
| _gitleaks | File | 349 B | 0644 |
|
| _gitsign | File | 349 B | 0644 |
|
| _glen | File | 349 B | 0644 |
|
| _glow | File | 349 B | 0644 |
|
| _go-licenses | File | 349 B | 0644 |
|
| _golangci-lint | File | 349 B | 0644 |
|
| _gopass | File | 349 B | 0644 |
|
| _gopherjs | File | 349 B | 0644 |
|
| _goreleaser | File | 349 B | 0644 |
|
| _grype | File | 349 B | 0644 |
|
| _gsctl | File | 294 B | 0644 |
|
| _gup | File | 349 B | 0644 |
|
| _helm | File | 349 B | 0644 |
|
| _helmfile | File | 349 B | 0644 |
|
| _hexdump | File | 672 B | 0644 |
|
| _hostctl | File | 349 B | 0644 |
|
| _httpx | File | 494 B | 0644 |
|
| _hugo | File | 349 B | 0644 |
|
| _hwclock | File | 631 B | 0644 |
|
| _ignite | File | 349 B | 0644 |
|
| _imgpkg | File | 349 B | 0644 |
|
| _incus | File | 349 B | 0644 |
|
| _infracost | File | 292 B | 0644 |
|
| _insmod | File | 664 B | 0644 |
|
| _insmod.static | File | 664 B | 0644 |
|
| _ionice | File | 1.21 KB | 0644 |
|
| _istioctl | File | 349 B | 0644 |
|
| _jj | File | 286 B | 0644 |
|
| _jungle | File | 528 B | 0644 |
|
| _just | File | 282 B | 0644 |
|
| _jwt | File | 349 B | 0644 |
|
| _k0sctl | File | 349 B | 0644 |
|
| _k3d | File | 349 B | 0644 |
|
| _k3s | File | 349 B | 0644 |
|
| _k3sup | File | 349 B | 0644 |
|
| _k6 | File | 349 B | 0644 |
|
| _k9s | File | 349 B | 0644 |
|
| _kafkactl | File | 349 B | 0644 |
|
| _kapp | File | 349 B | 0644 |
|
| _kata-runtime | File | 805 B | 0644 |
|
| _kconf | File | 349 B | 0644 |
|
| _keyring | File | 373 B | 0644 |
|
| _kind | File | 349 B | 0644 |
|
| _kn | File | 349 B | 0644 |
|
| _ko | File | 349 B | 0644 |
|
| _kompose | File | 349 B | 0644 |
|
| _kontena | File | 704 B | 0644 |
|
| _kool | File | 349 B | 0644 |
|
| _kops | File | 349 B | 0644 |
|
| _krane | File | 349 B | 0644 |
|
| _kratos | File | 349 B | 0644 |
|
| _kube-capacity | File | 349 B | 0644 |
|
| _kube-linter | File | 349 B | 0644 |
|
| _kubeadm | File | 349 B | 0644 |
|
| _kubebuilder | File | 349 B | 0644 |
|
| _kubecm | File | 349 B | 0644 |
|
| _kubectl | File | 349 B | 0644 |
|
| _kubectl-argo-rollouts | File | 349 B | 0644 |
|
| _kubectl-kuttl | File | 349 B | 0644 |
|
| _kubelogin | File | 349 B | 0644 |
|
| _kubemqctl | File | 349 B | 0644 |
|
| _kubescape | File | 349 B | 0644 |
|
| _kubesec | File | 349 B | 0644 |
|
| _kubeshark | File | 349 B | 0644 |
|
| _kubespy | File | 349 B | 0644 |
|
| _kustomize | File | 349 B | 0644 |
|
| _kyverno | File | 349 B | 0644 |
|
| _lefthook | File | 349 B | 0644 |
|
| _limactl | File | 349 B | 0644 |
|
| _linkerd | File | 349 B | 0644 |
|
| _look | File | 468 B | 0644 |
|
| _mattermost | File | 349 B | 0644 |
|
| _mdbook | File | 278 B | 0644 |
|
| _melange | File | 349 B | 0644 |
|
| _metalctl | File | 349 B | 0644 |
|
| _minikube | File | 349 B | 0644 |
|
| _minishift | File | 349 B | 0644 |
|
| _mise | File | 349 B | 0644 |
|
| _mmctl | File | 349 B | 0644 |
|
| _mock | File | 2.22 KB | 0644 |
|
| _mockery | File | 349 B | 0644 |
|
| _modinfo | File | 1.64 KB | 0644 |
|
| _modprobe | File | 4.35 KB | 0644 |
|
| _modules | File | 2.55 KB | 0644 |
|
| _moldy | File | 349 B | 0644 |
|
| _mount | File | 2.11 KB | 0644 |
|
| _mount.linux | File | 10.72 KB | 0644 |
|
| _mtr | File | 247 B | 0644 |
|
| _multi-gitter | File | 349 B | 0644 |
|
| _nerdctl | File | 349 B | 0644 |
|
| _newgrp | File | 474 B | 0644 |
|
| _nfpm | File | 349 B | 0644 |
|
| _ngrok | File | 266 B | 0644 |
|
| _nmcli | File | 5.57 KB | 0644 |
|
| _nomad | File | 298 B | 0644 |
|
| _notation | File | 349 B | 0644 |
|
| _nova | File | 349 B | 0644 |
|
| _nox | File | 508 B | 0644 |
|
| _npm | File | 266 B | 0644 |
|
| _nvm | File | 290 B | 0644 |
|
| _oc | File | 349 B | 0644 |
|
| _odo | File | 349 B | 0644 |
|
| _okteto | File | 349 B | 0644 |
|
| _op | File | 349 B | 0644 |
|
| _opa | File | 349 B | 0644 |
|
| _oras | File | 349 B | 0644 |
|
| _ory | File | 349 B | 0644 |
|
| _packer | File | 298 B | 0644 |
|
| _pip | File | 339 B | 0644 |
|
| _pip3 | File | 339 B | 0644 |
|
| _pipenv | File | 494 B | 0644 |
|
| _pitchfork | File | 349 B | 0644 |
|
| _pluto | File | 349 B | 0644 |
|
| _polygon-edge | File | 349 B | 0644 |
|
| _popeye | File | 349 B | 0644 |
|
| _pulumi | File | 349 B | 0644 |
|
| _px | File | 349 B | 0644 |
|
| _qrpc | File | 349 B | 0644 |
|
| _random | File | 349 B | 0644 |
|
| _rclone | File | 349 B | 0644 |
|
| _regal | File | 349 B | 0644 |
|
| _regctl | File | 349 B | 0644 |
|
| _renice | File | 845 B | 0644 |
|
| _repomanage | File | 630 B | 0644 |
|
| _reptyr | File | 559 B | 0644 |
|
| _rfkill | File | 902 B | 0644 |
|
| _rg | File | 294 B | 0644 |
|
| _rmmod | File | 639 B | 0644 |
|
| _rtcwake | File | 854 B | 0644 |
|
| _ruff | File | 306 B | 0644 |
|
| _runuser | File | 241 B | 0644 |
|
| _rustic | File | 278 B | 0644 |
|
| _rustup | File | 235 B | 0644 |
|
| _secret-tool | File | 1.58 KB | 0644 |
|
| _sentry-cli | File | 278 B | 0644 |
|
| _sinker | File | 349 B | 0644 |
|
| _skaffold | File | 349 B | 0644 |
|
| _slackpkg | File | 3.35 KB | 0644 |
|
| _slsa-verifier | File | 349 B | 0644 |
|
| _sops | File | 805 B | 0644 |
|
| _sopstool | File | 266 B | 0644 |
|
| _spacectl | File | 349 B | 0644 |
|
| _ssh-inscribe | File | 349 B | 0644 |
|
| _sshi | File | 349 B | 0644 |
|
| _starship | File | 278 B | 0644 |
|
| _steampipe | File | 349 B | 0644 |
|
| _stern | File | 280 B | 0644 |
|
| _stripe | File | 328 B | 0644 |
|
| _su | File | 910 B | 0644 |
|
| _svn | File | 8.64 KB | 0644 |
|
| _svnadmin | File | 2.24 KB | 0644 |
|
| _svnlook | File | 1.93 KB | 0644 |
|
| _syft | File | 349 B | 0644 |
|
| _talhelper | File | 349 B | 0644 |
|
| _tanzu | File | 349 B | 0644 |
|
| _tanzu-core | File | 349 B | 0644 |
|
| _task | File | 280 B | 0644 |
|
| _tctl | File | 349 B | 0644 |
|
| _tendermint | File | 266 B | 0644 |
|
| _terraform | File | 298 B | 0644 |
|
| _tfctl | File | 349 B | 0644 |
|
| _tilt | File | 349 B | 0644 |
|
| _timoni | File | 349 B | 0644 |
|
| _tkn | File | 349 B | 0644 |
|
| _tkn-pac | File | 349 B | 0644 |
|
| _todoist | File | 805 B | 0644 |
|
| _tofu | File | 298 B | 0644 |
|
| _tokio-console | File | 284 B | 0644 |
|
| _trivy | File | 349 B | 0644 |
|
| _udevadm | File | 2.08 KB | 0644 |
|
| _umount | File | 637 B | 0644 |
|
| _umount.linux | File | 4.52 KB | 0644 |
|
| _upctl | File | 349 B | 0644 |
|
| _uv | File | 306 B | 0644 |
|
| _uvx | File | 310 B | 0644 |
|
| _vacuum | File | 349 B | 0644 |
|
| _vault | File | 298 B | 0644 |
|
| _vela | File | 349 B | 0644 |
|
| _velero | File | 349 B | 0644 |
|
| _venom | File | 349 B | 0644 |
|
| _virtctl | File | 349 B | 0644 |
|
| _wasmer | File | 286 B | 0644 |
|
| _wasmer-headless | File | 286 B | 0644 |
|
| _watchexec | File | 282 B | 0644 |
|
| _write | File | 239 B | 0644 |
|
| _xc | File | 298 B | 0644 |
|
| _xm | File | 7.51 KB | 0644 |
|
| _yq | File | 288 B | 0644 |
|
| _ytt | File | 349 B | 0644 |
|
| _yum | File | 4.56 KB | 0644 |
|
| _zarf | File | 349 B | 0644 |
|
| _zitadel | File | 349 B | 0644 |
|
| _zola | File | 349 B | 0644 |
|
| a2disconf | File | 1.44 KB | 0644 |
|
| a2dismod | File | 1.44 KB | 0644 |
|
| a2dissite | File | 1.44 KB | 0644 |
|
| a2enconf | File | 1.44 KB | 0644 |
|
| a2enmod | File | 1.44 KB | 0644 |
|
| a2ensite | File | 1.44 KB | 0644 |
|
| a2x | File | 1.03 KB | 0644 |
|
| abook | File | 1.2 KB | 0644 |
|
| aclocal | File | 876 B | 0644 |
|
| aclocal-1.10 | File | 876 B | 0644 |
|
| aclocal-1.11 | File | 876 B | 0644 |
|
| aclocal-1.12 | File | 876 B | 0644 |
|
| aclocal-1.13 | File | 876 B | 0644 |
|
| aclocal-1.14 | File | 876 B | 0644 |
|
| aclocal-1.15 | File | 876 B | 0644 |
|
| aclocal-1.16 | File | 876 B | 0644 |
|
| acpi | File | 549 B | 0644 |
|
| add-apt-repository | File | 2.19 KB | 0644 |
|
| add_members | File | 954 B | 0644 |
|
| alias | File | 704 B | 0644 |
|
| alpine | File | 888 B | 0644 |
|
| alternatives | File | 2.83 KB | 0644 |
|
| animate | File | 8.48 KB | 0644 |
|
| ant | File | 2.8 KB | 0644 |
|
| apache2ctl | File | 408 B | 0644 |
|
| appdata-validate | File | 788 B | 0644 |
|
| apport-bug | File | 5.21 KB | 0644 |
|
| apport-cli | File | 5.21 KB | 0644 |
|
| apport-collect | File | 819 B | 0644 |
|
| apport-unpack | File | 433 B | 0644 |
|
| apropos | File | 3.57 KB | 0644 |
|
| apt | File | 7.42 KB | 0644 |
|
| apt-add-repository | File | 2.19 KB | 0644 |
|
| apt-build | File | 1.38 KB | 0644 |
|
| apt-cache | File | 3.36 KB | 0644 |
|
| apt-get | File | 4.22 KB | 0644 |
|
| apt-mark | File | 1.86 KB | 0644 |
|
| aptitude | File | 3.92 KB | 0644 |
|
| aptitude-curses | File | 3.92 KB | 0644 |
|
| arch | File | 1.41 KB | 0644 |
|
| arm-koji | File | 6.57 KB | 0644 |
|
| arp | File | 1.69 KB | 0644 |
|
| arping | File | 637 B | 0644 |
|
| arpspoof | File | 590 B | 0644 |
|
| asciidoc | File | 1.4 KB | 0644 |
|
| asciidoc.py | File | 1.4 KB | 0644 |
|
| aspell | File | 3.33 KB | 0644 |
|
| autoconf | File | 1002 B | 0644 |
|
| autoheader | File | 1.03 KB | 0644 |
|
| automake | File | 894 B | 0644 |
|
| automake-1.10 | File | 894 B | 0644 |
|
| automake-1.11 | File | 894 B | 0644 |
|
| automake-1.12 | File | 894 B | 0644 |
|
| automake-1.13 | File | 894 B | 0644 |
|
| automake-1.14 | File | 894 B | 0644 |
|
| automake-1.15 | File | 894 B | 0644 |
|
| automake-1.16 | File | 894 B | 0644 |
|
| autoreconf | File | 1.03 KB | 0644 |
|
| autorpm | File | 370 B | 0644 |
|
| autoscan | File | 881 B | 0644 |
|
| autossh | File | 19.65 KB | 0644 |
|
| autoupdate | File | 881 B | 0644 |
|
| avahi-browse | File | 1.04 KB | 0644 |
|
| avahi-browse-domains | File | 1.04 KB | 0644 |
|
| avctrl | File | 476 B | 0644 |
|
| b2sum | File | 860 B | 0644 |
|
| badblocks | File | 704 B | 0644 |
|
| bind | File | 807 B | 0644 |
|
| bk | File | 471 B | 0644 |
|
| blkdiscard | File | 698 B | 0644 |
|
| blkid | File | 2.1 KB | 0644 |
|
| blkzone | File | 1014 B | 0644 |
|
| blockdev | File | 789 B | 0644 |
|
| bmake | File | 6 KB | 0644 |
|
| bpftool | File | 43.7 KB | 0644 |
|
| brctl | File | 1.03 KB | 0644 |
|
| bsdtar | File | 21.63 KB | 0644 |
|
| btdownloadcurses.py | File | 1.07 KB | 0644 |
|
| btdownloadgui.py | File | 1.07 KB | 0644 |
|
| btdownloadheadless.py | File | 1.07 KB | 0644 |
|
| btrfs | File | 3.53 KB | 0644 |
|
| busctl | File | 7.89 KB | 0644 |
|
| bwrap | File | 1.19 KB | 0644 |
|
| bzip2 | File | 1.14 KB | 0644 |
|
| c++ | File | 2.5 KB | 0644 |
|
| cancel | File | 560 B | 0644 |
|
| cardctl | File | 398 B | 0644 |
|
| carton | File | 2.31 KB | 0644 |
|
| cc | File | 2.5 KB | 0644 |
|
| ccache | File | 1.08 KB | 0644 |
|
| ccze | File | 1.26 KB | 0644 |
|
| cd | File | 1.65 KB | 0644 |
|
| cdrecord | File | 3.43 KB | 0644 |
|
| cfagent | File | 431 B | 0644 |
|
| cfdisk | File | 608 B | 0644 |
|
| cfrun | File | 1.24 KB | 0644 |
|
| chage | File | 763 B | 0644 |
|
| change_pw | File | 734 B | 0644 |
|
| chcpu | File | 1.49 KB | 0644 |
|
| check_db | File | 551 B | 0644 |
|
| check_perms | File | 339 B | 0644 |
|
| checksec | File | 1.21 KB | 0644 |
|
| chflags | File | 1.66 KB | 0644 |
|
| chgrp | File | 1009 B | 0644 |
|
| chkconfig | File | 931 B | 0644 |
|
| chmem | File | 501 B | 0644 |
|
| chmod | File | 920 B | 0644 |
|
| chown | File | 1.17 KB | 0644 |
|
| chpasswd | File | 775 B | 0644 |
|
| chrome | File | 1.43 KB | 0644 |
|
| chromium | File | 1.43 KB | 0644 |
|
| chromium-browser | File | 1.43 KB | 0644 |
|
| chronyc | File | 1.61 KB | 0644 |
|
| chrpath | File | 639 B | 0644 |
|
| chrt | File | 920 B | 0644 |
|
| ci | File | 916 B | 0644 |
|
| ciptool | File | 9.48 KB | 0644 |
|
| civclient | File | 1.01 KB | 0644 |
|
| civserver | File | 497 B | 0644 |
|
| cksfv | File | 556 B | 0644 |
|
| cleanarch | File | 358 B | 0644 |
|
| clisp | File | 701 B | 0644 |
|
| clone_member | File | 745 B | 0644 |
|
| cloud-init | File | 3.24 KB | 0644 |
|
| clzip | File | 1.28 KB | 0644 |
|
| co | File | 916 B | 0644 |
|
| col | File | 460 B | 0644 |
|
| colcrt | File | 484 B | 0644 |
|
| colormake | File | 6 KB | 0644 |
|
| colormgr | File | 2.41 KB | 0644 |
|
| colrm | File | 509 B | 0644 |
|
| column | File | 1.43 KB | 0644 |
|
| compare | File | 8.48 KB | 0644 |
|
| compgen | File | 1.36 KB | 0644 |
|
| complete | File | 1.36 KB | 0644 |
|
| composite | File | 8.48 KB | 0644 |
|
| config_list | File | 785 B | 0644 |
|
| configure | File | 1.34 KB | 0644 |
|
| conjure | File | 8.48 KB | 0644 |
|
| convert | File | 8.48 KB | 0644 |
|
| cowsay | File | 522 B | 0644 |
|
| cowthink | File | 522 B | 0644 |
|
| cpan2dist | File | 1.2 KB | 0644 |
|
| cpio | File | 2.79 KB | 0644 |
|
| cppcheck | File | 2.63 KB | 0644 |
|
| createdb | File | 4.94 KB | 0644 |
|
| createuser | File | 4.94 KB | 0644 |
|
| crontab | File | 1.22 KB | 0644 |
|
| cryptsetup | File | 3.21 KB | 0644 |
|
| curl | File | 6.21 KB | 0644 |
|
| cvs | File | 12.59 KB | 0644 |
|
| cvsps | File | 1.45 KB | 0644 |
|
| dconf | File | 1.15 KB | 0644 |
|
| dcop | File | 361 B | 0644 |
|
| dd | File | 1.15 KB | 0644 |
|
| debconf | File | 293 B | 0644 |
|
| debconf-show | File | 293 B | 0644 |
|
| declare | File | 1.14 KB | 0644 |
|
| deja-dup | File | 728 B | 0644 |
|
| desktop-file-validate | File | 484 B | 0644 |
|
| devlink | File | 26.76 KB | 0644 |
|
| dfutool | File | 9.48 KB | 0644 |
|
| dhclient | File | 711 B | 0644 |
|
| dict | File | 2.04 KB | 0644 |
|
| display | File | 8.48 KB | 0644 |
|
| dmesg | File | 1.21 KB | 0644 |
|
| dmypy | File | 1.1 KB | 0644 |
|
| dnssec-keygen | File | 1.17 KB | 0644 |
|
| dnsspoof | File | 523 B | 0644 |
|
| dot | File | 1.29 KB | 0644 |
|
| dpkg | File | 5.35 KB | 0644 |
|
| dpkg-deb | File | 5.35 KB | 0644 |
|
| dpkg-query | File | 5.35 KB | 0644 |
|
| dpkg-reconfigure | File | 5.35 KB | 0644 |
|
| dpkg-source | File | 3.11 KB | 0644 |
|
| dropdb | File | 4.94 KB | 0644 |
|
| dropuser | File | 4.94 KB | 0644 |
|
| dselect | File | 610 B | 0644 |
|
| dsniff | File | 574 B | 0644 |
|
| dumpdb | File | 390 B | 0644 |
|
| dumpe2fs | File | 538 B | 0644 |
|
| e2freefrag | File | 470 B | 0644 |
|
| e2label | File | 334 B | 0644 |
|
| eatmydata | File | 31 B | 0644 |
|
| ebtables | File | 3.75 KB | 0644 |
|
| ecryptfs-migrate-home | File | 480 B | 0644 |
|
| edquota | File | 4.02 KB | 0644 |
|
| eject | File | 1.22 KB | 0644 |
|
| env | File | 1.53 KB | 0644 |
|
| eog | File | 695 B | 0644 |
|
| ether-wake | File | 598 B | 0644 |
|
| etherwake | File | 598 B | 0644 |
|
| ethtool | File | 24.61 KB | 0644 |
|
| evince | File | 1.02 KB | 0644 |
|
| explodepkg | File | 152 B | 0644 |
|
| export | File | 1.6 KB | 0644 |
|
| f77 | File | 2.5 KB | 0644 |
|
| f95 | File | 2.5 KB | 0644 |
|
| faillog | File | 718 B | 0644 |
|
| fallocate | File | 721 B | 0644 |
|
| fbgs | File | 1.52 KB | 0644 |
|
| fbi | File | 1.76 KB | 0644 |
|
| fdisk | File | 1.87 KB | 0644 |
|
| feh | File | 4.2 KB | 0644 |
|
| file | File | 852 B | 0644 |
|
| file-roller | File | 1.28 KB | 0644 |
|
| filebucket | File | 10.13 KB | 0644 |
|
| filefrag | File | 360 B | 0644 |
|
| filesnarf | File | 457 B | 0644 |
|
| find | File | 3.81 KB | 0644 |
|
| find_member | File | 730 B | 0644 |
|
| findfs | File | 695 B | 0644 |
|
| findmnt | File | 3.15 KB | 0644 |
|
| fio | File | 4.27 KB | 0644 |
|
| firefox | File | 1.48 KB | 0644 |
|
| firefox-esr | File | 1.48 KB | 0644 |
|
| flake8 | File | 1.12 KB | 0644 |
|
| flock | File | 874 B | 0644 |
|
| fprintd-delete | File | 316 B | 0644 |
|
| fprintd-enroll | File | 1.01 KB | 0644 |
|
| fprintd-list | File | 316 B | 0644 |
|
| fprintd-verify | File | 1.01 KB | 0644 |
|
| freeciv | File | 1.01 KB | 0644 |
|
| freeciv-gtk2 | File | 1.01 KB | 0644 |
|
| freeciv-gtk3 | File | 1.01 KB | 0644 |
|
| freeciv-sdl | File | 1.01 KB | 0644 |
|
| freeciv-server | File | 497 B | 0644 |
|
| freeciv-xaw | File | 1.01 KB | 0644 |
|
| fsck | File | 770 B | 0644 |
|
| fsfreeze | File | 524 B | 0644 |
|
| fstrim | File | 755 B | 0644 |
|
| function | File | 461 B | 0644 |
|
| fusermount | File | 626 B | 0644 |
|
| fwupdmgr | File | 9.41 KB | 0644 |
|
| fwupdtool | File | 8.04 KB | 0644 |
|
| g++ | File | 2.5 KB | 0644 |
|
| g++-5 | File | 2.5 KB | 0644 |
|
| g++-6 | File | 2.5 KB | 0644 |
|
| g++-7 | File | 2.5 KB | 0644 |
|
| g++-8 | File | 2.5 KB | 0644 |
|
| g4 | File | 1.33 KB | 0644 |
|
| g77 | File | 2.5 KB | 0644 |
|
| g95 | File | 2.5 KB | 0644 |
|
| gapplication | File | 2.31 KB | 0644 |
|
| gcc | File | 2.5 KB | 0644 |
|
| gcc-5 | File | 2.5 KB | 0644 |
|
| gcc-6 | File | 2.5 KB | 0644 |
|
| gcc-7 | File | 2.5 KB | 0644 |
|
| gcc-8 | File | 2.5 KB | 0644 |
|
| gccgo | File | 2.5 KB | 0644 |
|
| gccgo-5 | File | 2.5 KB | 0644 |
|
| gccgo-6 | File | 2.5 KB | 0644 |
|
| gccgo-7 | File | 2.5 KB | 0644 |
|
| gccgo-8 | File | 2.5 KB | 0644 |
|
| gcj | File | 2.5 KB | 0644 |
|
| gcl | File | 648 B | 0644 |
|
| gdb | File | 1.67 KB | 0644 |
|
| gdbus | File | 1.77 KB | 0644 |
|
| gdctl | File | 2.58 KB | 0644 |
|
| genaliases | File | 342 B | 0644 |
|
| gendiff | File | 316 B | 0644 |
|
| genisoimage | File | 911 B | 0644 |
|
| geoiplookup | File | 717 B | 0644 |
|
| geoiplookup6 | File | 717 B | 0644 |
|
| getconf | File | 837 B | 0644 |
|
| getent | File | 1.99 KB | 0644 |
|
| getopt | File | 815 B | 0644 |
|
| gfortran | File | 2.5 KB | 0644 |
|
| gfortran-5 | File | 2.5 KB | 0644 |
|
| gfortran-6 | File | 2.5 KB | 0644 |
|
| gfortran-7 | File | 2.5 KB | 0644 |
|
| gfortran-8 | File | 2.5 KB | 0644 |
|
| gio | File | 3.93 KB | 0644 |
|
| gkrellm | File | 989 B | 0644 |
|
| gkrellm2 | File | 989 B | 0644 |
|
| gm | File | 923 B | 0644 |
|
| gmake | File | 6 KB | 0644 |
|
| gmplayer | File | 11.15 KB | 0644 |
|
| gnatmake | File | 1.02 KB | 0644 |
|
| gnokii | File | 6.69 KB | 0644 |
|
| gnome-control-center | File | 1.67 KB | 0644 |
|
| gnome-extensions | File | 2.01 KB | 0644 |
|
| gnome-mplayer | File | 959 B | 0644 |
|
| gnome-screenshot | File | 907 B | 0644 |
|
| gnumake | File | 6 KB | 0644 |
|
| google-chrome | File | 1.43 KB | 0644 |
|
| google-chrome-stable | File | 1.43 KB | 0644 |
|
| gpasswd | File | 643 B | 0644 |
|
| gpc | File | 2.5 KB | 0644 |
|
| gpg | File | 1.99 KB | 0644 |
|
| gpg2 | File | 1.55 KB | 0644 |
|
| gpgv | File | 1.16 KB | 0644 |
|
| gpgv2 | File | 1.16 KB | 0644 |
|
| gphoto2 | File | 1.37 KB | 0644 |
|
| gprof | File | 1.34 KB | 0644 |
|
| gresource | File | 2.14 KB | 0644 |
|
| groupadd | File | 705 B | 0644 |
|
| groupdel | File | 532 B | 0644 |
|
| groupmems | File | 589 B | 0644 |
|
| groupmod | File | 760 B | 0644 |
|
| growisofs | File | 923 B | 0644 |
|
| grpck | File | 568 B | 0644 |
|
| grub | File | 10.68 KB | 0644 |
|
| grub-editenv | File | 10.68 KB | 0644 |
|
| grub-install | File | 10.68 KB | 0644 |
|
| grub-mkconfig | File | 10.68 KB | 0644 |
|
| grub-mkfont | File | 10.68 KB | 0644 |
|
| grub-mkimage | File | 10.68 KB | 0644 |
|
| grub-mkpasswd-pbkdf2 | File | 10.68 KB | 0644 |
|
| grub-mkrescue | File | 10.68 KB | 0644 |
|
| grub-probe | File | 10.68 KB | 0644 |
|
| grub-reboot | File | 10.68 KB | 0644 |
|
| grub-script-check | File | 10.68 KB | 0644 |
|
| grub-set-default | File | 10.68 KB | 0644 |
|
| gsettings | File | 4.12 KB | 0644 |
|
| gssdp-device-sniffer | File | 953 B | 0644 |
|
| gssdp-discover | File | 953 B | 0644 |
|
| gst-inspect-1.0 | File | 2.54 KB | 0644 |
|
| gst-launch-1.0 | File | 3.4 KB | 0644 |
|
| gtar | File | 21.63 KB | 0644 |
|
| gzip | File | 1.31 KB | 0644 |
|
| hardlink | File | 1.37 KB | 0644 |
|
| hash | File | 545 B | 0644 |
|
| hciattach | File | 9.48 KB | 0644 |
|
| hciconfig | File | 9.48 KB | 0644 |
|
| hcitool | File | 9.48 KB | 0644 |
|
| hd | File | 672 B | 0644 |
|
| hddtemp | File | 1.02 KB | 0644 |
|
| help | File | 427 B | 0644 |
|
| hexdump | File | 1 KB | 0644 |
|
| hid2hci | File | 354 B | 0644 |
|
| host | File | 2.63 KB | 0644 |
|
| hostname | File | 604 B | 0644 |
|
| hostnamectl | File | 2.71 KB | 0644 |
|
| hping | File | 975 B | 0644 |
|
| hping2 | File | 975 B | 0644 |
|
| hping3 | File | 975 B | 0644 |
|
| htop | File | 871 B | 0644 |
|
| htpasswd | File | 905 B | 0644 |
|
| hunspell | File | 964 B | 0644 |
|
| ibus.bash | File | 3.33 KB | 0644 |
|
| iceweasel | File | 1.48 KB | 0644 |
|
| iconv | File | 1.27 KB | 0644 |
|
| id | File | 399 B | 0644 |
|
| identify | File | 8.48 KB | 0644 |
|
| idn | File | 735 B | 0644 |
|
| ifdown | File | 974 B | 0644 |
|
| ifquery | File | 974 B | 0644 |
|
| ifstat | File | 2.08 KB | 0644 |
|
| ifstatus | File | 974 B | 0644 |
|
| iftop | File | 663 B | 0644 |
|
| ifup | File | 974 B | 0644 |
|
| import | File | 8.48 KB | 0644 |
|
| influx | File | 855 B | 0644 |
|
| info | File | 2.07 KB | 0644 |
|
| inject | File | 726 B | 0644 |
|
| inotifywait | File | 1.37 KB | 0644 |
|
| inotifywatch | File | 1.37 KB | 0644 |
|
| installpkg | File | 774 B | 0644 |
|
| interdiff | File | 873 B | 0644 |
|
| invoke-rc.d | File | 1.21 KB | 0644 |
|
| ionice | File | 1.13 KB | 0644 |
|
| ip | File | 21.6 KB | 0644 |
|
| ipcalc | File | 539 B | 0644 |
|
| ipcmk | File | 576 B | 0644 |
|
| ipcrm | File | 1.39 KB | 0644 |
|
| ipcs | File | 514 B | 0644 |
|
| iperf | File | 3.12 KB | 0644 |
|
| iperf3 | File | 3.12 KB | 0644 |
|
| ipmitool | File | 5.24 KB | 0644 |
|
| ipsec | File | 3 KB | 0644 |
|
| iptables | File | 2.06 KB | 0644 |
|
| ipv6calc | File | 1.1 KB | 0644 |
|
| iscsiadm | File | 1.92 KB | 0644 |
|
| isort | File | 1.31 KB | 0644 |
|
| isosize | File | 529 B | 0644 |
|
| isql | File | 429 B | 0644 |
|
| iwconfig | File | 2.58 KB | 0644 |
|
| iwlist | File | 624 B | 0644 |
|
| iwpriv | File | 710 B | 0644 |
|
| iwspy | File | 495 B | 0644 |
|
| jar | File | 556 B | 0644 |
|
| jarsigner | File | 1.67 KB | 0644 |
|
| java | File | 9.67 KB | 0644 |
|
| javac | File | 9.67 KB | 0644 |
|
| javadoc | File | 9.67 KB | 0644 |
|
| javaws | File | 833 B | 0644 |
|
| journalctl | File | 6.41 KB | 0644 |
|
| jpegoptim | File | 993 B | 0644 |
|
| jps | File | 637 B | 0644 |
|
| jq | File | 2.46 KB | 0644 |
|
| jshint | File | 908 B | 0644 |
|
| json_xs | File | 858 B | 0644 |
|
| jsonschema | File | 672 B | 0644 |
|
| k3b | File | 1.23 KB | 0644 |
|
| kcov | File | 1.74 KB | 0644 |
|
| kernel-install | File | 1.67 KB | 0644 |
|
| kill | File | 704 B | 0644 |
|
| killall | File | 941 B | 0644 |
|
| kmod | File | 2.54 KB | 0644 |
|
| koji | File | 6.57 KB | 0644 |
|
| kplayer | File | 11.15 KB | 0644 |
|
| ktutil | File | 3.09 KB | 0644 |
|
| l2ping | File | 9.48 KB | 0644 |
|
| larch | File | 1.94 KB | 0644 |
|
| lastlog | File | 661 B | 0644 |
|
| lbzip2 | File | 1.14 KB | 0644 |
|
| ldapadd | File | 4.95 KB | 0644 |
|
| ldapcompare | File | 4.95 KB | 0644 |
|
| ldapdelete | File | 4.95 KB | 0644 |
|
| ldapmodify | File | 4.95 KB | 0644 |
|
| ldapmodrdn | File | 4.95 KB | 0644 |
|
| ldappasswd | File | 4.95 KB | 0644 |
|
| ldapsearch | File | 4.95 KB | 0644 |
|
| ldapvi | File | 1.29 KB | 0644 |
|
| ldapwhoami | File | 4.95 KB | 0644 |
|
| ldattach | File | 1.44 KB | 0644 |
|
| lftp | File | 710 B | 0644 |
|
| lftpget | File | 326 B | 0644 |
|
| libreoffice | File | 6.53 KB | 0644 |
|
| lilo | File | 1.64 KB | 0644 |
|
| links | File | 3.22 KB | 0644 |
|
| links2 | File | 3.22 KB | 0644 |
|
| lintian | File | 5.53 KB | 0644 |
|
| lintian-info | File | 5.53 KB | 0644 |
|
| lisp | File | 664 B | 0644 |
|
| list_admins | File | 562 B | 0644 |
|
| list_lists | File | 607 B | 0644 |
|
| list_members | File | 1008 B | 0644 |
|
| list_owners | File | 574 B | 0644 |
|
| locale-gen | File | 725 B | 0644 |
|
| localectl | File | 3.28 KB | 0644 |
|
| logger | File | 1.64 KB | 0644 |
|
| loginctl | File | 4.18 KB | 0644 |
|
| look | File | 683 B | 0644 |
|
| losetup | File | 1.7 KB | 0644 |
|
| lpq | File | 594 B | 0644 |
|
| lpr | File | 889 B | 0644 |
|
| lrzip | File | 1.35 KB | 0644 |
|
| lsblk | File | 2.26 KB | 0644 |
|
| lscpu | File | 1.04 KB | 0644 |
|
| lsipc | File | 1.28 KB | 0644 |
|
| lslocks | File | 1.08 KB | 0644 |
|
| lslogins | File | 1.71 KB | 0644 |
|
| lsmem | File | 1.04 KB | 0644 |
|
| lsns | File | 1.18 KB | 0644 |
|
| lsof | File | 1.41 KB | 0644 |
|
| lsscsi | File | 698 B | 0644 |
|
| lsusb | File | 494 B | 0644 |
|
| lua | File | 462 B | 0644 |
|
| lua5.0 | File | 462 B | 0644 |
|
| lua5.1 | File | 462 B | 0644 |
|
| lua5.2 | File | 462 B | 0644 |
|
| lua5.3 | File | 462 B | 0644 |
|
| lua5.4 | File | 462 B | 0644 |
|
| lua50 | File | 462 B | 0644 |
|
| lua51 | File | 462 B | 0644 |
|
| lua52 | File | 462 B | 0644 |
|
| lua53 | File | 462 B | 0644 |
|
| lua54 | File | 462 B | 0644 |
|
| luac | File | 523 B | 0644 |
|
| luac5.0 | File | 523 B | 0644 |
|
| luac5.1 | File | 523 B | 0644 |
|
| luac5.2 | File | 523 B | 0644 |
|
| luac5.3 | File | 523 B | 0644 |
|
| luac5.4 | File | 523 B | 0644 |
|
| luac50 | File | 523 B | 0644 |
|
| luac51 | File | 523 B | 0644 |
|
| luac52 | File | 523 B | 0644 |
|
| luac53 | File | 523 B | 0644 |
|
| luac54 | File | 523 B | 0644 |
|
| luseradd | File | 1.16 KB | 0644 |
|
| luserdel | File | 458 B | 0644 |
|
| lusermod | File | 1.16 KB | 0644 |
|
| lvchange | File | 21.02 KB | 0644 |
|
| lvcreate | File | 21.02 KB | 0644 |
|
| lvdisplay | File | 21.02 KB | 0644 |
|
| lvextend | File | 21.02 KB | 0644 |
|
| lvm | File | 21.02 KB | 0644 |
|
| lvmdiskscan | File | 21.02 KB | 0644 |
|
| lvreduce | File | 21.02 KB | 0644 |
|
| lvremove | File | 21.02 KB | 0644 |
|
| lvrename | File | 21.02 KB | 0644 |
|
| lvresize | File | 21.02 KB | 0644 |
|
| lvs | File | 21.02 KB | 0644 |
|
| lvscan | File | 21.02 KB | 0644 |
|
| lz4 | File | 1.2 KB | 0644 |
|
| lz4c | File | 1.2 KB | 0644 |
|
| lzip | File | 1.28 KB | 0644 |
|
| lzma | File | 927 B | 0644 |
|
| lzop | File | 1.5 KB | 0644 |
|
| macof | File | 434 B | 0644 |
|
| mailmanctl | File | 467 B | 0644 |
|
| mailsnarf | File | 457 B | 0644 |
|
| make | File | 6 KB | 0644 |
|
| makepkg | File | 1.03 KB | 0644 |
|
| man | File | 3.57 KB | 0644 |
|
| mbimcli | File | 2.59 KB | 0644 |
|
| mc | File | 814 B | 0644 |
|
| mcookie | File | 599 B | 0644 |
|
| mcrypt | File | 1.76 KB | 0644 |
|
| md5sum | File | 860 B | 0644 |
|
| mdadm | File | 4.52 KB | 0644 |
|
| mdecrypt | File | 1.76 KB | 0644 |
|
| mdtool | File | 1.92 KB | 0644 |
|
| medusa | File | 695 B | 0644 |
|
| mencoder | File | 11.15 KB | 0644 |
|
| mfiutil | File | 3.87 KB | 0644 |
|
| micropython | File | 3.28 KB | 0644 |
|
| mii-diag | File | 663 B | 0644 |
|
| mii-tool | File | 925 B | 0644 |
|
| minicom | File | 1.1 KB | 0644 |
|
| mkfs | File | 659 B | 0644 |
|
| mkinitrd | File | 1.28 KB | 0644 |
|
| mkisofs | File | 911 B | 0644 |
|
| mkswap | File | 1.04 KB | 0644 |
|
| mktemp | File | 758 B | 0644 |
|
| mmcli | File | 5.51 KB | 0644 |
|
| mmsitepass | File | 348 B | 0644 |
|
| mogrify | File | 8.48 KB | 0644 |
|
| mokutil | File | 1.16 KB | 0644 |
|
| monodevelop | File | 472 B | 0644 |
|
| montage | File | 8.48 KB | 0644 |
|
| more | File | 752 B | 0644 |
|
| mount | File | 2.06 KB | 0644 |
|
| mountpoint | File | 498 B | 0644 |
|
| mozilla-firefox | File | 1.48 KB | 0644 |
|
| mplayer | File | 11.15 KB | 0644 |
|
| mplayer2 | File | 11.15 KB | 0644 |
|
| mr | File | 2.81 KB | 0644 |
|
| mrsasutil | File | 3.87 KB | 0644 |
|
| msgsnarf | File | 457 B | 0644 |
|
| msynctool | File | 1.23 KB | 0644 |
|
| mtr | File | 1.9 KB | 0644 |
|
| mtx | File | 1.15 KB | 0644 |
|
| munin-node-configure | File | 767 B | 0644 |
|
| munin-run | File | 641 B | 0644 |
|
| munin-update | File | 693 B | 0644 |
|
| munindoc | File | 333 B | 0644 |
|
| mussh | File | 1.15 KB | 0644 |
|
| mutt | File | 5.05 KB | 0644 |
|
| muttng | File | 5.05 KB | 0644 |
|
| mypy | File | 1.6 KB | 0644 |
|
| mysql | File | 2.97 KB | 0644 |
|
| mysqladmin | File | 1.88 KB | 0644 |
|
| namei | File | 500 B | 0644 |
|
| nc | File | 1.16 KB | 0644 |
|
| ncal | File | 872 B | 0644 |
|
| ncftp | File | 614 B | 0644 |
|
| neomutt | File | 5.05 KB | 0644 |
|
| nethogs | File | 566 B | 0644 |
|
| netplan | File | 2.76 KB | 0644 |
|
| networkctl | File | 3.12 KB | 0644 |
|
| newgrp | File | 610 B | 0644 |
|
| newlist | File | 754 B | 0644 |
|
| newusers | File | 666 B | 0644 |
|
| ngrep | File | 858 B | 0644 |
|
| nmap | File | 1.65 KB | 0644 |
|
| nmcli | File | 3.75 KB | 0644 |
|
| nproc | File | 510 B | 0644 |
|
| nsenter | File | 1.24 KB | 0644 |
|
| nslookup | File | 2.63 KB | 0644 |
|
| nsupdate | File | 868 B | 0644 |
|
| ntpdate | File | 725 B | 0644 |
|
| oggdec | File | 974 B | 0644 |
|
| oomctl | File | 1.64 KB | 0644 |
|
| openssl | File | 4.15 KB | 0644 |
|
| openvpn | File | 553 B | 0644 |
|
| opera | File | 1.38 KB | 0644 |
|
| optipng | File | 1.09 KB | 0644 |
|
| p4 | File | 1.33 KB | 0644 |
|
| pack200 | File | 2.22 KB | 0644 |
|
| partx | File | 1.27 KB | 0644 |
|
| passwd | File | 625 B | 0644 |
|
| patch | File | 1.85 KB | 0644 |
|
| pbzip2 | File | 1.14 KB | 0644 |
|
| pccardctl | File | 398 B | 0644 |
|
| pdftoppm | File | 864 B | 0644 |
|
| pdftotext | File | 973 B | 0644 |
|
| pdlzip | File | 1.28 KB | 0644 |
|
| perl | File | 4.22 KB | 0644 |
|
| perlcritic | File | 1.21 KB | 0644 |
|
| perldoc | File | 4.22 KB | 0644 |
|
| perltidy | File | 1.88 KB | 0644 |
|
| pgrep | File | 1.66 KB | 0644 |
|
| phing | File | 2.8 KB | 0644 |
|
| pidof | File | 633 B | 0644 |
|
| pigz | File | 1.31 KB | 0644 |
|
| pine | File | 888 B | 0644 |
|
| pinfo | File | 2.07 KB | 0644 |
|
| ping | File | 1.93 KB | 0644 |
|
| ping4 | File | 1.93 KB | 0644 |
|
| ping6 | File | 1.93 KB | 0644 |
|
| pivot_root | File | 387 B | 0644 |
|
| pkcon | File | 2.67 KB | 0644 |
|
| pkg-config | File | 1.29 KB | 0644 |
|
| pkg-get | File | 2.14 KB | 0644 |
|
| pkgadd | File | 1.76 KB | 0644 |
|
| pkgconf | File | 1.29 KB | 0644 |
|
| pkgrm | File | 1.07 KB | 0644 |
|
| pkgtool | File | 872 B | 0644 |
|
| pkill | File | 1.66 KB | 0644 |
|
| plague-client | File | 429 B | 0644 |
|
| plzip | File | 1.28 KB | 0644 |
|
| pm-hibernate | File | 353 B | 0644 |
|
| pm-is-supported | File | 346 B | 0644 |
|
| pm-powersave | File | 302 B | 0644 |
|
| pm-suspend | File | 353 B | 0644 |
|
| pm-suspend-hybrid | File | 353 B | 0644 |
|
| pmake | File | 6 KB | 0644 |
|
| pngfix | File | 819 B | 0644 |
|
| poff | File | 688 B | 0644 |
|
| pon | File | 440 B | 0644 |
|
| postalias | File | 944 B | 0644 |
|
| postcat | File | 757 B | 0644 |
|
| postconf | File | 834 B | 0644 |
|
| postfix | File | 676 B | 0644 |
|
| postmap | File | 944 B | 0644 |
|
| postsuper | File | 1.08 KB | 0644 |
|
| povray | File | 2.33 KB | 0644 |
|
| powerprofilesctl | File | 6.82 KB | 0644 |
|
| ppc-koji | File | 6.57 KB | 0644 |
|
| prelink | File | 1014 B | 0644 |
|
| printenv | File | 447 B | 0644 |
|
| prlimit | File | 1.3 KB | 0644 |
|
| pro | File | 1.95 KB | 0644 |
|
| protoc | File | 1.47 KB | 0644 |
|
| ps | File | 1.92 KB | 0644 |
|
| psql | File | 4.94 KB | 0644 |
|
| puppet | File | 10.13 KB | 0644 |
|
| puppetca | File | 10.13 KB | 0644 |
|
| puppetd | File | 10.13 KB | 0644 |
|
| puppetdoc | File | 10.13 KB | 0644 |
|
| puppetmasterd | File | 10.13 KB | 0644 |
|
| puppetqd | File | 10.13 KB | 0644 |
|
| puppetrun | File | 10.13 KB | 0644 |
|
| pushd | File | 1.65 KB | 0644 |
|
| pv | File | 904 B | 0644 |
|
| pvchange | File | 21.02 KB | 0644 |
|
| pvcreate | File | 21.02 KB | 0644 |
|
| pvdisplay | File | 21.02 KB | 0644 |
|
| pvmove | File | 21.02 KB | 0644 |
|
| pvremove | File | 21.02 KB | 0644 |
|
| pvs | File | 21.02 KB | 0644 |
|
| pvscan | File | 21.02 KB | 0644 |
|
| pwck | File | 370 B | 0644 |
|
| pwd | File | 368 B | 0644 |
|
| pwdx | File | 481 B | 0644 |
|
| pwgen | File | 708 B | 0644 |
|
| pxz | File | 1.6 KB | 0644 |
|
| py.test | File | 4.35 KB | 0644 |
|
| py.test-2 | File | 4.35 KB | 0644 |
|
| py.test-3 | File | 4.35 KB | 0644 |
|
| pycodestyle | File | 754 B | 0644 |
|
| pydoc | File | 1.09 KB | 0644 |
|
| pydoc3 | File | 1.09 KB | 0644 |
|
| pydocstyle | File | 860 B | 0644 |
|
| pyflakes | File | 457 B | 0644 |
|
| pygmentize | File | 1.03 KB | 0644 |
|
| pylint | File | 4.31 KB | 0644 |
|
| pylint-2 | File | 4.31 KB | 0644 |
|
| pylint-3 | File | 4.31 KB | 0644 |
|
| pypy | File | 3.28 KB | 0644 |
|
| pypy3 | File | 3.28 KB | 0644 |
|
| pyston | File | 3.28 KB | 0644 |
|
| pyston3 | File | 3.28 KB | 0644 |
|
| pytest | File | 4.35 KB | 0644 |
|
| pytest-2 | File | 4.35 KB | 0644 |
|
| pytest-3 | File | 4.35 KB | 0644 |
|
| python | File | 3.28 KB | 0644 |
|
| python2 | File | 3.28 KB | 0644 |
|
| python2.7 | File | 3.28 KB | 0644 |
|
| python3 | File | 3.28 KB | 0644 |
|
| python3.10 | File | 3.28 KB | 0644 |
|
| python3.11 | File | 3.28 KB | 0644 |
|
| python3.12 | File | 3.28 KB | 0644 |
|
| python3.13 | File | 3.28 KB | 0644 |
|
| python3.3 | File | 3.28 KB | 0644 |
|
| python3.4 | File | 3.28 KB | 0644 |
|
| python3.5 | File | 3.28 KB | 0644 |
|
| python3.6 | File | 3.28 KB | 0644 |
|
| python3.7 | File | 3.28 KB | 0644 |
|
| python3.8 | File | 3.28 KB | 0644 |
|
| python3.9 | File | 3.28 KB | 0644 |
|
| pyvenv | File | 510 B | 0644 |
|
| pyvenv-3.10 | File | 510 B | 0644 |
|
| pyvenv-3.11 | File | 510 B | 0644 |
|
| pyvenv-3.12 | File | 510 B | 0644 |
|
| pyvenv-3.13 | File | 510 B | 0644 |
|
| pyvenv-3.4 | File | 510 B | 0644 |
|
| pyvenv-3.5 | File | 510 B | 0644 |
|
| pyvenv-3.6 | File | 510 B | 0644 |
|
| pyvenv-3.7 | File | 510 B | 0644 |
|
| pyvenv-3.8 | File | 510 B | 0644 |
|
| pyvenv-3.9 | File | 510 B | 0644 |
|
| qdbus | File | 361 B | 0644 |
|
| qemu | File | 3.22 KB | 0644 |
|
| qemu-kvm | File | 3.22 KB | 0644 |
|
| qemu-system-i386 | File | 3.22 KB | 0644 |
|
| qemu-system-x86_64 | File | 3.22 KB | 0644 |
|
| qmicli | File | 5.16 KB | 0644 |
|
| qrunner | File | 413 B | 0644 |
|
| querybts | File | 1.22 KB | 0644 |
|
| quota | File | 4.02 KB | 0644 |
|
| quotacheck | File | 4.02 KB | 0644 |
|
| quotaoff | File | 4.02 KB | 0644 |
|
| quotaon | File | 4.02 KB | 0644 |
|
| radvdump | File | 484 B | 0644 |
|
| ralsh | File | 10.13 KB | 0644 |
|
| rcs | File | 916 B | 0644 |
|
| rcsdiff | File | 916 B | 0644 |
|
| rdesktop | File | 1.43 KB | 0644 |
|
| rdict | File | 2.04 KB | 0644 |
|
| readprofile | File | 679 B | 0644 |
|
| remove_members | File | 775 B | 0644 |
|
| removepkg | File | 539 B | 0644 |
|
| renice | File | 784 B | 0644 |
|
| reportbug | File | 2.6 KB | 0644 |
|
| repquota | File | 4.02 KB | 0644 |
|
| resizepart | File | 605 B | 0644 |
|
| resolvconf | File | 461 B | 0644 |
|
| resolvectl | File | 6.57 KB | 0644 |
|
| rev | File | 439 B | 0644 |
|
| rfcomm | File | 9.48 KB | 0644 |
|
| rfkill | File | 962 B | 0644 |
|
| ri | File | 4.12 KB | 0644 |
|
| rlog | File | 916 B | 0644 |
|
| rmlist | File | 540 B | 0644 |
|
| route | File | 837 B | 0644 |
|
| rpcdebug | File | 1 KB | 0644 |
|
| rpm | File | 11.13 KB | 0644 |
|
| rpm2targz | File | 401 B | 0644 |
|
| rpm2tgz | File | 401 B | 0644 |
|
| rpm2txz | File | 401 B | 0644 |
|
| rpmbuild | File | 11.13 KB | 0644 |
|
| rpmbuild-md5 | File | 11.13 KB | 0644 |
|
| rpmcheck | File | 558 B | 0644 |
|
| rrdtool | File | 469 B | 0644 |
|
| rsync | File | 3.61 KB | 0644 |
|
| rtcwake | File | 1.06 KB | 0644 |
|
| run0 | File | 4.23 KB | 0644 |
|
| runuser | File | 892 B | 0644 |
|
| s390-koji | File | 6.57 KB | 0644 |
|
| sbcl | File | 707 B | 0644 |
|
| sbcl-mt | File | 707 B | 0644 |
|
| sbopkg | File | 1.7 KB | 0644 |
|
| scp | File | 19.65 KB | 0644 |
|
| screen | File | 3.27 KB | 0644 |
|
| script | File | 1.04 KB | 0644 |
|
| scriptlive | File | 762 B | 0644 |
|
| scriptreplay | File | 917 B | 0644 |
|
| scrub | File | 1001 B | 0644 |
|
| sdptool | File | 9.48 KB | 0644 |
|
| set | File | 1.16 KB | 0644 |
|
| setarch | File | 790 B | 0644 |
|
| setpriv | File | 3.05 KB | 0644 |
|
| setquota | File | 4.02 KB | 0644 |
|
| setsid | File | 440 B | 0644 |
|
| setterm | File | 2.53 KB | 0644 |
|
| sfdisk | File | 2.1 KB | 0644 |
|
| sftp | File | 19.65 KB | 0644 |
|
| sh | File | 871 B | 0644 |
|
| sha1sum | File | 860 B | 0644 |
|
| sha224sum | File | 860 B | 0644 |
|
| sha256sum | File | 860 B | 0644 |
|
| sha384sum | File | 860 B | 0644 |
|
| sha512sum | File | 860 B | 0644 |
|
| shasum | File | 860 B | 0644 |
|
| shellcheck | File | 1.76 KB | 0644 |
|
| sidedoor | File | 19.65 KB | 0644 |
|
| sitecopy | File | 1.38 KB | 0644 |
|
| slabtop | File | 811 B | 0644 |
|
| slapt-get | File | 2.48 KB | 0644 |
|
| slapt-src | File | 1.97 KB | 0644 |
|
| slogin | File | 19.65 KB | 0644 |
|
| smartctl | File | 3.72 KB | 0644 |
|
| smbcacls | File | 8.13 KB | 0644 |
|
| smbclient | File | 8.13 KB | 0644 |
|
| smbcquotas | File | 8.13 KB | 0644 |
|
| smbget | File | 8.13 KB | 0644 |
|
| smbpasswd | File | 8.13 KB | 0644 |
|
| smbtar | File | 8.13 KB | 0644 |
|
| smbtree | File | 8.13 KB | 0644 |
|
| snap | File | 2.48 KB | 0644 |
|
| snownews | File | 360 B | 0644 |
|
| sparc-koji | File | 6.57 KB | 0644 |
|
| spovray | File | 2.33 KB | 0644 |
|
| sqlite3 | File | 900 B | 0644 |
|
| ss | File | 1.26 KB | 0644 |
|
| ssh | File | 19.65 KB | 0644 |
|
| ssh-add | File | 1.08 KB | 0644 |
|
| ssh-copy-id | File | 931 B | 0644 |
|
| ssh-keygen | File | 5.87 KB | 0644 |
|
| ssh-keyscan | File | 1.13 KB | 0644 |
|
| sshfs | File | 627 B | 0644 |
|
| sshmitm | File | 369 B | 0644 |
|
| sshow | File | 521 B | 0644 |
|
| star | File | 21.63 KB | 0644 |
|
| strace | File | 3.24 KB | 0644 |
|
| stream | File | 8.48 KB | 0644 |
|
| strings | File | 1.5 KB | 0644 |
|
| su | File | 892 B | 0644 |
|
| sudo | File | 1.61 KB | 0644 |
|
| sudoedit | File | 1.61 KB | 0644 |
|
| svcadm | File | 5.02 KB | 0644 |
|
| svk | File | 8.53 KB | 0644 |
|
| swaplabel | File | 635 B | 0644 |
|
| swapoff | File | 743 B | 0644 |
|
| swapon | File | 1.97 KB | 0644 |
|
| sync_members | File | 923 B | 0644 |
|
| synclient | File | 581 B | 0644 |
|
| sysbench | File | 3.75 KB | 0644 |
|
| sysctl | File | 872 B | 0644 |
|
| systemctl | File | 15.77 KB | 0644 |
|
| systemd-analyze | File | 8.12 KB | 0644 |
|
| systemd-cat | File | 1.87 KB | 0644 |
|
| systemd-cgls | File | 2.33 KB | 0644 |
|
| systemd-cgtop | File | 2.21 KB | 0644 |
|
| systemd-confext | File | 2.64 KB | 0644 |
|
| systemd-creds | File | 5.28 KB | 0644 |
|
| systemd-cryptenroll | File | 3.7 KB | 0644 |
|
| systemd-delta | File | 1.77 KB | 0644 |
|
| systemd-detect-virt | File | 1.34 KB | 0644 |
|
| systemd-dissect | File | 3.8 KB | 0644 |
|
| systemd-id128 | File | 2.47 KB | 0644 |
|
| systemd-path | File | 1.72 KB | 0644 |
|
| systemd-resolve | File | 2.7 KB | 0644 |
|
| systemd-run | File | 5.5 KB | 0644 |
|
| systemd-sysext | File | 2.41 KB | 0644 |
|
| systemd-vpick | File | 1.78 KB | 0644 |
|
| tar | File | 21.63 KB | 0644 |
|
| taskset | File | 1.18 KB | 0644 |
|
| tc | File | 25.87 KB | 0644 |
|
| tcpdump | File | 1.7 KB | 0644 |
|
| tcpkill | File | 473 B | 0644 |
|
| tcpnice | File | 441 B | 0644 |
|
| tightvncviewer | File | 3.02 KB | 0644 |
|
| timedatectl | File | 2.97 KB | 0644 |
|
| timeout | File | 1014 B | 0644 |
|
| tinysparql | File | 1.12 KB | 0644 |
|
| tipc | File | 8.11 KB | 0644 |
|
| tox | File | 1.38 KB | 0644 |
|
| trace-cmd.bash | File | 6.9 KB | 0644 |
|
| tracepath | File | 543 B | 0644 |
|
| tracepath6 | File | 543 B | 0644 |
|
| tree | File | 1.13 KB | 0644 |
|
| truncate | File | 749 B | 0644 |
|
| tshark | File | 3.86 KB | 0644 |
|
| tsig-keygen | File | 625 B | 0644 |
|
| tune2fs | File | 1.63 KB | 0644 |
|
| typeset | File | 1.14 KB | 0644 |
|
| ua | File | 1.95 KB | 0644 |
|
| ubuntu-bug | File | 5.21 KB | 0644 |
|
| ubuntu-report | File | 10.26 KB | 0644 |
|
| uclampset | File | 665 B | 0644 |
|
| udevadm | File | 11.23 KB | 0644 |
|
| udisksctl | File | 857 B | 0644 |
|
| ufw | File | 2.44 KB | 0644 |
|
| ul | File | 655 B | 0644 |
|
| ulimit | File | 821 B | 0644 |
|
| umount | File | 1.82 KB | 0644 |
|
| unace | File | 498 B | 0644 |
|
| unpack200 | File | 1.35 KB | 0644 |
|
| unrar | File | 636 B | 0644 |
|
| unshare | File | 936 B | 0644 |
|
| unshunt | File | 357 B | 0644 |
|
| update-alternatives | File | 2.83 KB | 0644 |
|
| update-initramfs | File | 581 B | 0644 |
|
| update-rc.d | File | 1.91 KB | 0644 |
|
| upgradepkg | File | 759 B | 0644 |
|
| urlsnarf | File | 530 B | 0644 |
|
| useradd | File | 1.51 KB | 0644 |
|
| userdel | File | 619 B | 0644 |
|
| usermod | File | 1.6 KB | 0644 |
|
| uuidd | File | 862 B | 0644 |
|
| uuidgen | File | 753 B | 0644 |
|
| uuidparse | File | 727 B | 0644 |
|
| valgrind | File | 3.22 KB | 0644 |
|
| vgcfgbackup | File | 21.02 KB | 0644 |
|
| vgcfgrestore | File | 21.02 KB | 0644 |
|
| vgchange | File | 21.02 KB | 0644 |
|
| vgck | File | 21.02 KB | 0644 |
|
| vgconvert | File | 21.02 KB | 0644 |
|
| vgcreate | File | 21.02 KB | 0644 |
|
| vgdisplay | File | 21.02 KB | 0644 |
|
| vgexport | File | 21.02 KB | 0644 |
|
| vgextend | File | 21.02 KB | 0644 |
|
| vgimport | File | 21.02 KB | 0644 |
|
| vgmerge | File | 21.02 KB | 0644 |
|
| vgmknodes | File | 21.02 KB | 0644 |
|
| vgreduce | File | 21.02 KB | 0644 |
|
| vgremove | File | 21.02 KB | 0644 |
|
| vgrename | File | 21.02 KB | 0644 |
|
| vgs | File | 21.02 KB | 0644 |
|
| vgscan | File | 21.02 KB | 0644 |
|
| vgsplit | File | 21.02 KB | 0644 |
|
| vigr | File | 562 B | 0644 |
|
| vipw | File | 562 B | 0644 |
|
| vmstat | File | 729 B | 0644 |
|
| vncviewer | File | 3.02 KB | 0644 |
|
| vpnc | File | 2.1 KB | 0644 |
|
| wall | File | 634 B | 0644 |
|
| watch | File | 1.29 KB | 0644 |
|
| wdctl | File | 1.34 KB | 0644 |
|
| webmitm | File | 369 B | 0644 |
|
| wget | File | 6.63 KB | 0644 |
|
| whatis | File | 3.57 KB | 0644 |
|
| whereis | File | 531 B | 0644 |
|
| whiptail | File | 345 B | 0644 |
|
| wine | File | 696 B | 0644 |
|
| wine-development | File | 696 B | 0644 |
|
| wine-stable | File | 696 B | 0644 |
|
| wine64 | File | 696 B | 0644 |
|
| wine64-development | File | 696 B | 0644 |
|
| wine64-stable | File | 696 B | 0644 |
|
| wipefs | File | 1.3 KB | 0644 |
|
| withlist | File | 576 B | 0644 |
|
| wodim | File | 3.43 KB | 0644 |
|
| wol | File | 1.36 KB | 0644 |
|
| wsimport | File | 1.16 KB | 0644 |
|
| wtf | File | 1.08 KB | 0644 |
|
| wvdial | File | 1.27 KB | 0644 |
|
| xdg-mime | File | 2.44 KB | 0644 |
|
| xdg-settings | File | 723 B | 0644 |
|
| xev | File | 765 B | 0644 |
|
| xfreerdp | File | 2.25 KB | 0644 |
|
| xgamma | File | 1.97 KB | 0644 |
|
| xhost | File | 438 B | 0644 |
|
| xmllint | File | 1.3 KB | 0644 |
|
| xmlwf | File | 713 B | 0644 |
|
| xmms | File | 785 B | 0644 |
|
| xmodmap | File | 450 B | 0644 |
|
| xpovray | File | 2.33 KB | 0644 |
|
| xrandr | File | 5.08 KB | 0644 |
|
| xrdb | File | 535 B | 0644 |
|
| xsltproc | File | 1.25 KB | 0644 |
|
| xvfb-run | File | 1 KB | 0644 |
|
| xvnc4viewer | File | 3.02 KB | 0644 |
|
| xxd | File | 634 B | 0644 |
|
| xz | File | 1.6 KB | 0644 |
|
| xzdec | File | 741 B | 0644 |
|
| ypcat | File | 708 B | 0644 |
|
| ypmatch | File | 708 B | 0644 |
|
| yum-arch | File | 390 B | 0644 |
|
| zopfli | File | 694 B | 0644 |
|
| zopflipng | File | 1002 B | 0644 |
|
| zramctl | File | 1.26 KB | 0644 |
|