__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
# bpftool(8) bash completion -*- shell-script -*- # # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) # Copyright (C) 2017-2018 Netronome Systems, Inc. # # Author: Quentin Monnet <[email protected]> # Takes a list of words in argument; each one of them is added to COMPREPLY if # it is not already present on the command line. Returns no value. _bpftool_once_attr() { local w idx found for w in $*; do found=0 for (( idx=3; idx < ${#words[@]}-1; idx++ )); do if [[ $w == ${words[idx]} ]]; then found=1 break fi done [[ $found -eq 0 ]] && \ COMPREPLY+=( $( compgen -W "$w" -- "$cur" ) ) done } # Takes a list of words as argument; if any of those words is present on the # command line, return 0. Otherwise, return 1. _bpftool_search_list() { local w idx for w in $*; do for (( idx=3; idx < ${#words[@]}-1; idx++ )); do [[ $w == ${words[idx]} ]] && return 0 done done return 1 } # Takes a list of words in argument; adds them all to COMPREPLY if none of them # is already present on the command line. Returns no value. _bpftool_one_of_list() { _bpftool_search_list $* && return 1 COMPREPLY+=( $( compgen -W "$*" -- "$cur" ) ) } _bpftool_get_map_ids() { COMPREPLY+=( $( compgen -W "$( bpftool -jp map 2>&1 | \ command sed -n 's/.*"id": \(.*\),$/\1/p' )" -- "$cur" ) ) } # Takes map type and adds matching map ids to the list of suggestions. _bpftool_get_map_ids_for_type() { local type="$1" COMPREPLY+=( $( compgen -W "$( bpftool -jp map 2>&1 | \ command grep -C2 "$type" | \ command sed -n 's/.*"id": \(.*\),$/\1/p' )" -- "$cur" ) ) } _bpftool_get_map_names() { COMPREPLY+=( $( compgen -W "$( bpftool -jp map 2>&1 | \ command sed -n 's/.*"name": \(.*\),$/\1/p' )" -- "$cur" ) ) } # Takes map type and adds matching map names to the list of suggestions. _bpftool_get_map_names_for_type() { local type="$1" COMPREPLY+=( $( compgen -W "$( bpftool -jp map 2>&1 | \ command grep -C2 "$type" | \ command sed -n 's/.*"name": \(.*\),$/\1/p' )" -- "$cur" ) ) } _bpftool_get_prog_ids() { COMPREPLY+=( $( compgen -W "$( bpftool -jp prog 2>&1 | \ command sed -n 's/.*"id": \(.*\),$/\1/p' )" -- "$cur" ) ) } _bpftool_get_prog_tags() { COMPREPLY+=( $( compgen -W "$( bpftool -jp prog 2>&1 | \ command sed -n 's/.*"tag": "\(.*\)",$/\1/p' )" -- "$cur" ) ) } _bpftool_get_prog_names() { COMPREPLY+=( $( compgen -W "$( bpftool -jp prog 2>&1 | \ command sed -n 's/.*"name": "\(.*\)",$/\1/p' )" -- "$cur" ) ) } _bpftool_get_btf_ids() { COMPREPLY+=( $( compgen -W "$( bpftool -jp btf 2>&1 | \ command sed -n 's/.*"id": \(.*\),$/\1/p' )" -- "$cur" ) ) } _bpftool_get_link_ids() { COMPREPLY+=( $( compgen -W "$( bpftool -jp link 2>&1 | \ command sed -n 's/.*"id": \(.*\),$/\1/p' )" -- "$cur" ) ) } _bpftool_get_obj_map_names() { local obj maps obj=$1 maps=$(objdump -j .maps -t $obj 2>/dev/null | \ command awk '/g . .maps/ {print $NF}') COMPREPLY+=( $( compgen -W "$maps" -- "$cur" ) ) } _bpftool_get_obj_map_idxs() { local obj nmaps obj=$1 nmaps=$(objdump -j maps -t $obj 2>/dev/null | grep -c 'g . maps') COMPREPLY+=( $( compgen -W "$(seq 0 $((nmaps - 1)))" -- "$cur" ) ) } _sysfs_get_netdevs() { COMPREPLY+=( $( compgen -W "$( ls /sys/class/net 2>/dev/null )" -- \ "$cur" ) ) } # Retrieve type of the map that we are operating on. _bpftool_map_guess_map_type() { local keyword idx ref="" for (( idx=3; idx < ${#words[@]}-1; idx++ )); do case "${words[$((idx-2))]}" in lookup|update) keyword=${words[$((idx-1))]} ref=${words[$((idx))]} ;; push) printf "stack" return 0 ;; enqueue) printf "queue" return 0 ;; esac done [[ -z $ref ]] && return 0 local type type=$(bpftool -jp map show $keyword $ref | \ command sed -n 's/.*"type": "\(.*\)",$/\1/p') [[ -n $type ]] && printf $type } _bpftool_map_update_get_id() { local command="$1" # Is it the map to update, or a map to insert into the map to update? # Search for "value" keyword. local idx value for (( idx=7; idx < ${#words[@]}-1; idx++ )); do if [[ ${words[idx]} == "value" ]]; then value=1 break fi done if [[ $value -eq 0 ]]; then case "$command" in push) _bpftool_get_map_ids_for_type stack ;; enqueue) _bpftool_get_map_ids_for_type queue ;; *) _bpftool_get_map_ids ;; esac return 0 fi # Id to complete is for a value. It can be either prog id or map id. This # depends on the type of the map to update. local type=$(_bpftool_map_guess_map_type) case $type in array_of_maps|hash_of_maps) _bpftool_get_map_ids return 0 ;; prog_array) _bpftool_get_prog_ids return 0 ;; *) return 0 ;; esac } _bpftool_map_update_get_name() { local command="$1" # Is it the map to update, or a map to insert into the map to update? # Search for "value" keyword. local idx value for (( idx=7; idx < ${#words[@]}-1; idx++ )); do if [[ ${words[idx]} == "value" ]]; then value=1 break fi done if [[ $value -eq 0 ]]; then case "$command" in push) _bpftool_get_map_names_for_type stack ;; enqueue) _bpftool_get_map_names_for_type queue ;; *) _bpftool_get_map_names ;; esac return 0 fi # Name to complete is for a value. It can be either prog name or map name. This # depends on the type of the map to update. local type=$(_bpftool_map_guess_map_type) case $type in array_of_maps|hash_of_maps) _bpftool_get_map_names return 0 ;; prog_array) _bpftool_get_prog_names return 0 ;; *) return 0 ;; esac } _bpftool() { local cur prev words cword comp_args local json=0 _init_completion -- "$@" || return # Deal with options if [[ ${words[cword]} == -* ]]; then local c='--version --json --pretty --bpffs --mapcompat --debug \ --use-loader --base-btf' COMPREPLY=( $( compgen -W "$c" -- "$cur" ) ) return 0 fi if _bpftool_search_list -j --json -p --pretty; then json=1 fi # Deal with simplest keywords case $prev in help|hex) return 0 ;; tag) _bpftool_get_prog_tags return 0 ;; dev|offload_dev|xdpmeta_dev) _sysfs_get_netdevs return 0 ;; file|pinned|-B|--base-btf) _filedir return 0 ;; batch) COMPREPLY=( $( compgen -W 'file' -- "$cur" ) ) return 0 ;; esac # Remove all options so completions don't have to deal with them. local i pprev for (( i=1; i < ${#words[@]}; )); do if [[ ${words[i]::1} == - ]] && [[ ${words[i]} != "-B" ]] && [[ ${words[i]} != "--base-btf" ]]; then words=( "${words[@]:0:i}" "${words[@]:i+1}" ) [[ $i -le $cword ]] && cword=$(( cword - 1 )) else i=$(( ++i )) fi done cur=${words[cword]} prev=${words[cword - 1]} pprev=${words[cword - 2]} local object=${words[1]} if [[ -z $object || $cword -eq 1 ]]; then case $cur in *) COMPREPLY=( $( compgen -W "$( bpftool help 2>&1 | \ command sed \ -e '/OBJECT := /!d' \ -e 's/.*{//' \ -e 's/}.*//' \ -e 's/|//g' )" -- "$cur" ) ) COMPREPLY+=( $( compgen -W 'batch help' -- "$cur" ) ) return 0 ;; esac fi local command=${words[2]} [[ $command == help ]] && return 0 local MAP_TYPE='id pinned name' local PROG_TYPE='id pinned tag name' # Completion depends on object and command in use case $object in prog) # Complete id and name, only for subcommands that use prog (but no # map) ids/names. case $command in show|list|dump|pin) case $prev in id) _bpftool_get_prog_ids return 0 ;; name) _bpftool_get_prog_names return 0 ;; esac ;; esac local METRIC_TYPE='cycles instructions l1d_loads llc_misses \ itlb_misses dtlb_misses' case $command in show|list) [[ $prev != "$command" ]] && return 0 COMPREPLY=( $( compgen -W "$PROG_TYPE" -- "$cur" ) ) return 0 ;; dump) case $prev in $command) COMPREPLY+=( $( compgen -W "xlated jited" -- \ "$cur" ) ) return 0 ;; xlated|jited) COMPREPLY=( $( compgen -W "$PROG_TYPE" -- \ "$cur" ) ) return 0 ;; *) # "file" is not compatible with other keywords here if _bpftool_search_list 'file'; then return 0 fi if ! _bpftool_search_list 'linum opcodes visual'; then _bpftool_once_attr 'file' fi _bpftool_once_attr 'linum opcodes' if _bpftool_search_list 'xlated' && [[ "$json" == 0 ]]; then _bpftool_once_attr 'visual' fi return 0 ;; esac ;; pin) if [[ $prev == "$command" ]]; then COMPREPLY=( $( compgen -W "$PROG_TYPE" -- "$cur" ) ) else _filedir fi return 0 ;; attach|detach) case $cword in 3) COMPREPLY=( $( compgen -W "$PROG_TYPE" -- "$cur" ) ) return 0 ;; 4) case $prev in id) _bpftool_get_prog_ids ;; name) _bpftool_get_prog_names ;; pinned) _filedir ;; esac return 0 ;; 5) local BPFTOOL_PROG_ATTACH_TYPES='sk_msg_verdict \ sk_skb_verdict sk_skb_stream_verdict sk_skb_stream_parser \ flow_dissector' COMPREPLY=( $( compgen -W "$BPFTOOL_PROG_ATTACH_TYPES" -- "$cur" ) ) return 0 ;; 6) COMPREPLY=( $( compgen -W "$MAP_TYPE" -- "$cur" ) ) return 0 ;; 7) case $prev in id) _bpftool_get_map_ids ;; name) _bpftool_get_map_names ;; pinned) _filedir ;; esac return 0 ;; esac ;; load|loadall) local obj # Propose "load/loadall" to complete "bpftool prog load", # or bash tries to complete "load" as a filename below. if [[ ${#words[@]} -eq 3 ]]; then COMPREPLY=( $( compgen -W "load loadall" -- "$cur" ) ) return 0 fi if [[ ${#words[@]} -lt 6 ]]; then _filedir return 0 fi obj=${words[3]} if [[ ${words[-4]} == "map" ]]; then COMPREPLY=( $( compgen -W "$MAP_TYPE" -- "$cur" ) ) return 0 fi if [[ ${words[-3]} == "map" ]]; then if [[ ${words[-2]} == "idx" ]]; then _bpftool_get_obj_map_idxs $obj elif [[ ${words[-2]} == "name" ]]; then _bpftool_get_obj_map_names $obj fi return 0 fi if [[ ${words[-2]} == "map" ]]; then COMPREPLY=( $( compgen -W "idx name" -- "$cur" ) ) return 0 fi case $prev in type) local BPFTOOL_PROG_LOAD_TYPES='socket kprobe \ kretprobe classifier flow_dissector \ action tracepoint raw_tracepoint \ xdp perf_event cgroup/skb cgroup/sock \ cgroup/dev lwt_in lwt_out lwt_xmit \ lwt_seg6local sockops sk_skb sk_msg lirc_mode2 \ cgroup/bind4 cgroup/bind6 \ cgroup/connect4 cgroup/connect6 cgroup/connect_unix \ cgroup/getpeername4 cgroup/getpeername6 cgroup/getpeername_unix \ cgroup/getsockname4 cgroup/getsockname6 cgroup/getsockname_unix \ cgroup/sendmsg4 cgroup/sendmsg6 cgroup/sendmsg_unix \ cgroup/recvmsg4 cgroup/recvmsg6 cgroup/recvmsg_unix \ cgroup/post_bind4 cgroup/post_bind6 \ cgroup/sysctl cgroup/getsockopt \ cgroup/setsockopt cgroup/sock_release struct_ops \ fentry fexit freplace sk_lookup' COMPREPLY=( $( compgen -W "$BPFTOOL_PROG_LOAD_TYPES" -- "$cur" ) ) return 0 ;; id) _bpftool_get_map_ids return 0 ;; name) _bpftool_get_map_names return 0 ;; pinned|pinmaps) _filedir return 0 ;; *) COMPREPLY=( $( compgen -W "map" -- "$cur" ) ) _bpftool_once_attr 'type pinmaps autoattach' _bpftool_one_of_list 'offload_dev xdpmeta_dev' return 0 ;; esac ;; tracelog) return 0 ;; profile) case $cword in 3) COMPREPLY=( $( compgen -W "$PROG_TYPE" -- "$cur" ) ) return 0 ;; 4) case $prev in id) _bpftool_get_prog_ids ;; name) _bpftool_get_prog_names ;; pinned) _filedir ;; esac return 0 ;; 5) COMPREPLY=( $( compgen -W "$METRIC_TYPE duration" -- "$cur" ) ) return 0 ;; *) [[ $prev == duration ]] && return 0 _bpftool_once_attr "$METRIC_TYPE" return 0 ;; esac ;; run) if [[ ${#words[@]} -eq 4 ]]; then COMPREPLY=( $( compgen -W "$PROG_TYPE" -- "$cur" ) ) return 0 fi case $prev in id) _bpftool_get_prog_ids return 0 ;; name) _bpftool_get_prog_names return 0 ;; data_in|data_out|ctx_in|ctx_out) _filedir return 0 ;; repeat|data_size_out|ctx_size_out) return 0 ;; *) _bpftool_once_attr 'data_in data_out data_size_out \ ctx_in ctx_out ctx_size_out repeat' return 0 ;; esac ;; *) [[ $prev == $object ]] && \ COMPREPLY=( $( compgen -W 'dump help pin attach detach \ load loadall show list tracelog run profile' -- "$cur" ) ) ;; esac ;; struct_ops) local STRUCT_OPS_TYPE='id name' case $command in show|list|dump|unregister) case $prev in $command) COMPREPLY=( $( compgen -W "$STRUCT_OPS_TYPE" -- "$cur" ) ) ;; id) _bpftool_get_map_ids_for_type struct_ops ;; name) _bpftool_get_map_names_for_type struct_ops ;; esac return 0 ;; register) [[ $prev == $command ]] && _filedir return 0 ;; *) [[ $prev == $object ]] && \ COMPREPLY=( $( compgen -W 'register unregister show list dump help' \ -- "$cur" ) ) ;; esac ;; iter) case $command in pin) case $prev in $command) _filedir ;; id) _bpftool_get_map_ids ;; name) _bpftool_get_map_names ;; pinned) _filedir ;; map) _bpftool_one_of_list $MAP_TYPE ;; *) _bpftool_once_attr 'map' ;; esac return 0 ;; *) [[ $prev == $object ]] && \ COMPREPLY=( $( compgen -W 'pin help' \ -- "$cur" ) ) ;; esac ;; map) case $command in show|list|dump|peek|pop|dequeue|freeze) case $prev in $command) COMPREPLY=( $( compgen -W "$MAP_TYPE" -- "$cur" ) ) return 0 ;; id) case "$command" in peek) _bpftool_get_map_ids_for_type stack _bpftool_get_map_ids_for_type queue ;; pop) _bpftool_get_map_ids_for_type stack ;; dequeue) _bpftool_get_map_ids_for_type queue ;; *) _bpftool_get_map_ids ;; esac return 0 ;; name) case "$command" in peek) _bpftool_get_map_names_for_type stack _bpftool_get_map_names_for_type queue ;; pop) _bpftool_get_map_names_for_type stack ;; dequeue) _bpftool_get_map_names_for_type queue ;; *) _bpftool_get_map_names ;; esac return 0 ;; *) return 0 ;; esac ;; create) case $prev in $command) _filedir return 0 ;; type) local BPFTOOL_MAP_CREATE_TYPES="$(bpftool feature list_builtins map_types 2>/dev/null | \ grep -v '^unspec$')" COMPREPLY=( $( compgen -W "$BPFTOOL_MAP_CREATE_TYPES" -- "$cur" ) ) return 0 ;; key|value|flags|entries) return 0 ;; inner_map) COMPREPLY=( $( compgen -W "$MAP_TYPE" -- "$cur" ) ) return 0 ;; id) _bpftool_get_map_ids ;; name) case $pprev in inner_map) _bpftool_get_map_names ;; *) return 0 ;; esac ;; *) _bpftool_once_attr 'type key value entries name flags offload_dev' if _bpftool_search_list 'array_of_maps' 'hash_of_maps'; then _bpftool_once_attr 'inner_map' fi return 0 ;; esac ;; lookup|getnext|delete) case $prev in $command) COMPREPLY=( $( compgen -W "$MAP_TYPE" -- "$cur" ) ) return 0 ;; id) _bpftool_get_map_ids return 0 ;; name) _bpftool_get_map_names return 0 ;; key) COMPREPLY+=( $( compgen -W 'hex' -- "$cur" ) ) ;; *) case $(_bpftool_map_guess_map_type) in queue|stack) return 0 ;; esac _bpftool_once_attr 'key' return 0 ;; esac ;; update|push|enqueue) case $prev in $command) COMPREPLY=( $( compgen -W "$MAP_TYPE" -- "$cur" ) ) return 0 ;; id) _bpftool_map_update_get_id $command return 0 ;; name) _bpftool_map_update_get_name $command return 0 ;; key) COMPREPLY+=( $( compgen -W 'hex' -- "$cur" ) ) ;; value) # We can have bytes, or references to a prog or a # map, depending on the type of the map to update. case "$(_bpftool_map_guess_map_type)" in array_of_maps|hash_of_maps) COMPREPLY+=( $( compgen -W "$MAP_TYPE" \ -- "$cur" ) ) return 0 ;; prog_array) COMPREPLY+=( $( compgen -W "$PROG_TYPE" \ -- "$cur" ) ) return 0 ;; *) COMPREPLY+=( $( compgen -W 'hex' \ -- "$cur" ) ) return 0 ;; esac return 0 ;; *) case $(_bpftool_map_guess_map_type) in queue|stack) _bpftool_once_attr 'value' return 0; ;; esac _bpftool_once_attr 'key' local UPDATE_FLAGS='any exist noexist' idx for (( idx=3; idx < ${#words[@]}-1; idx++ )); do if [[ ${words[idx]} == 'value' ]]; then # 'value' is present, but is not the last # word i.e. we can now have UPDATE_FLAGS. _bpftool_one_of_list "$UPDATE_FLAGS" return 0 fi done for (( idx=3; idx < ${#words[@]}-1; idx++ )); do if [[ ${words[idx]} == 'key' ]]; then # 'key' is present, but is not the last # word i.e. we can now have 'value'. _bpftool_once_attr 'value' return 0 fi done return 0 ;; esac ;; pin) case $prev in $command) COMPREPLY=( $( compgen -W "$MAP_TYPE" -- "$cur" ) ) ;; id) _bpftool_get_map_ids ;; name) _bpftool_get_map_names ;; esac return 0 ;; event_pipe) case $prev in $command) COMPREPLY=( $( compgen -W "$MAP_TYPE" -- "$cur" ) ) return 0 ;; id) _bpftool_get_map_ids_for_type perf_event_array return 0 ;; name) _bpftool_get_map_names_for_type perf_event_array return 0 ;; cpu) return 0 ;; index) return 0 ;; *) _bpftool_once_attr 'cpu index' return 0 ;; esac ;; *) [[ $prev == $object ]] && \ COMPREPLY=( $( compgen -W 'delete dump getnext help \ lookup pin event_pipe show list update create \ peek push enqueue pop dequeue freeze' -- \ "$cur" ) ) ;; esac ;; btf) local MAP_TYPE='id pinned name' case $command in dump) case $prev in $command) COMPREPLY+=( $( compgen -W "id map prog file" -- \ "$cur" ) ) return 0 ;; prog) COMPREPLY=( $( compgen -W "$PROG_TYPE" -- "$cur" ) ) return 0 ;; map) COMPREPLY=( $( compgen -W "$MAP_TYPE" -- "$cur" ) ) return 0 ;; id) case $pprev in prog) _bpftool_get_prog_ids ;; map) _bpftool_get_map_ids ;; $command) _bpftool_get_btf_ids ;; esac return 0 ;; name) case $pprev in prog) _bpftool_get_prog_names ;; map) _bpftool_get_map_names ;; esac return 0 ;; format) COMPREPLY=( $( compgen -W "c raw" -- "$cur" ) ) ;; root_id) return 0; ;; c) COMPREPLY=( $( compgen -W "unsorted root_id" -- "$cur" ) ) ;; *) # emit extra options case ${words[3]} in id|file) COMPREPLY=( $( compgen -W "root_id" -- "$cur" ) ) _bpftool_once_attr 'format' ;; map|prog) if [[ ${words[3]} == "map" ]] && [[ $cword == 6 ]]; then COMPREPLY+=( $( compgen -W "key value kv all" -- "$cur" ) ) fi COMPREPLY=( $( compgen -W "root_id" -- "$cur" ) ) _bpftool_once_attr 'format' ;; *) ;; esac return 0 ;; esac ;; show|list) case $prev in $command) COMPREPLY+=( $( compgen -W "id" -- "$cur" ) ) ;; id) _bpftool_get_btf_ids ;; esac return 0 ;; *) [[ $prev == $object ]] && \ COMPREPLY=( $( compgen -W 'dump help show list' \ -- "$cur" ) ) ;; esac ;; gen) case $command in object) _filedir return 0 ;; skeleton) case $prev in $command) _filedir return 0 ;; *) _bpftool_once_attr 'name' return 0 ;; esac ;; subskeleton) case $prev in $command) _filedir return 0 ;; *) _bpftool_once_attr 'name' return 0 ;; esac ;; min_core_btf) _filedir return 0 ;; *) [[ $prev == $object ]] && \ COMPREPLY=( $( compgen -W 'object skeleton subskeleton help min_core_btf' -- "$cur" ) ) ;; esac ;; cgroup) case $command in show|list|tree) case $cword in 3) _filedir ;; 4) COMPREPLY=( $( compgen -W 'effective' -- "$cur" ) ) ;; esac return 0 ;; attach|detach) local BPFTOOL_CGROUP_ATTACH_TYPES="$(bpftool feature list_builtins attach_types 2>/dev/null | \ grep '^cgroup_')" local ATTACH_FLAGS='multi override' # Check for $prev = $command first if [ $prev = $command ]; then _filedir return 0 # Then check for attach type. This is done outside of the # "case $prev in" to avoid writing the whole list of attach # types again as pattern to match (where we cannot reuse # our variable). elif [[ $BPFTOOL_CGROUP_ATTACH_TYPES =~ $prev ]]; then COMPREPLY=( $( compgen -W "$PROG_TYPE" -- \ "$cur" ) ) return 0 fi # case/esac for the other cases case $prev in id) _bpftool_get_prog_ids return 0 ;; *) if ! _bpftool_search_list "$BPFTOOL_CGROUP_ATTACH_TYPES"; then COMPREPLY=( $( compgen -W \ "$BPFTOOL_CGROUP_ATTACH_TYPES" -- "$cur" ) ) elif [[ "$command" == "attach" ]]; then # We have an attach type on the command line, # but it is not the previous word, or # "id|pinned|tag|name" (we already checked for # that). This should only leave the case when # we need attach flags for "attach" commamnd. _bpftool_one_of_list "$ATTACH_FLAGS" fi return 0 ;; esac ;; *) [[ $prev == $object ]] && \ COMPREPLY=( $( compgen -W 'help attach detach \ show list tree' -- "$cur" ) ) ;; esac ;; perf) case $command in *) [[ $prev == $object ]] && \ COMPREPLY=( $( compgen -W 'help \ show list' -- "$cur" ) ) ;; esac ;; net) local ATTACH_TYPES='xdp xdpgeneric xdpdrv xdpoffload tcx_ingress tcx_egress' case $command in show|list) [[ $prev != "$command" ]] && return 0 COMPREPLY=( $( compgen -W 'dev' -- "$cur" ) ) return 0 ;; attach) case $cword in 3) COMPREPLY=( $( compgen -W "$ATTACH_TYPES" -- "$cur" ) ) return 0 ;; 4) COMPREPLY=( $( compgen -W "$PROG_TYPE" -- "$cur" ) ) return 0 ;; 5) case $prev in id) _bpftool_get_prog_ids ;; name) _bpftool_get_prog_names ;; pinned) _filedir ;; esac return 0 ;; 6) COMPREPLY=( $( compgen -W 'dev' -- "$cur" ) ) return 0 ;; 8) _bpftool_once_attr 'overwrite' return 0 ;; esac ;; detach) case $cword in 3) COMPREPLY=( $( compgen -W "$ATTACH_TYPES" -- "$cur" ) ) return 0 ;; 4) COMPREPLY=( $( compgen -W 'dev' -- "$cur" ) ) return 0 ;; esac ;; *) [[ $prev == $object ]] && \ COMPREPLY=( $( compgen -W 'help \ show list attach detach' -- "$cur" ) ) ;; esac ;; feature) case $command in probe) [[ $prev == "prefix" ]] && return 0 if _bpftool_search_list 'macros'; then _bpftool_once_attr 'prefix' else COMPREPLY+=( $( compgen -W 'macros' -- "$cur" ) ) fi _bpftool_one_of_list 'kernel dev' _bpftool_once_attr 'full unprivileged' return 0 ;; list_builtins) [[ $prev != "$command" ]] && return 0 COMPREPLY=( $( compgen -W 'prog_types map_types \ attach_types link_types helpers' -- "$cur" ) ) ;; *) [[ $prev == $object ]] && \ COMPREPLY=( $( compgen -W 'help list_builtins probe' -- "$cur" ) ) ;; esac ;; link) case $command in show|list|pin|detach) case $prev in id) _bpftool_get_link_ids return 0 ;; esac ;; esac local LINK_TYPE='id pinned' case $command in show|list) [[ $prev != "$command" ]] && return 0 COMPREPLY=( $( compgen -W "$LINK_TYPE" -- "$cur" ) ) return 0 ;; pin|detach) if [[ $prev == "$command" ]]; then COMPREPLY=( $( compgen -W "$LINK_TYPE" -- "$cur" ) ) elif [[ $pprev == "$command" ]]; then _filedir fi return 0 ;; *) [[ $prev == $object ]] && \ COMPREPLY=( $( compgen -W 'help pin detach show list' -- "$cur" ) ) ;; esac ;; esac } && complete -F _bpftool bpftool # ex: ts=4 sw=4 et filetype=sh
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| 2to3 | File | 994 B | 0644 |
|
| 7z | File | 3.88 KB | 0644 |
|
| 7za | File | 3.88 KB | 0644 |
|
| 7zr | File | 3.88 KB | 0644 |
|
| 7zz | File | 3.88 KB | 0644 |
|
| 7zzs | File | 3.88 KB | 0644 |
|
| _adb | File | 1.76 KB | 0644 |
|
| _airflow | File | 508 B | 0644 |
|
| _allero | File | 349 B | 0644 |
|
| _alp | File | 349 B | 0644 |
|
| _ansible | File | 508 B | 0644 |
|
| _ansible-config | File | 508 B | 0644 |
|
| _ansible-console | File | 508 B | 0644 |
|
| _ansible-doc | File | 508 B | 0644 |
|
| _ansible-galaxy | File | 508 B | 0644 |
|
| _ansible-inventory | File | 508 B | 0644 |
|
| _ansible-playbook | File | 508 B | 0644 |
|
| _ansible-pull | File | 508 B | 0644 |
|
| _ansible-vault | File | 508 B | 0644 |
|
| _apko | File | 349 B | 0644 |
|
| _aqua | File | 349 B | 0644 |
|
| _arduino-cli | File | 349 B | 0644 |
|
| _argc | File | 292 B | 0644 |
|
| _argo | File | 349 B | 0644 |
|
| _atlas | File | 349 B | 0644 |
|
| _atmos | File | 349 B | 0644 |
|
| _bao | File | 298 B | 0644 |
|
| _bashbot | File | 349 B | 0644 |
|
| _black | File | 494 B | 0644 |
|
| _blackd | File | 494 B | 0644 |
|
| _bosh | File | 349 B | 0644 |
|
| _buf | File | 349 B | 0644 |
|
| _caddy | File | 349 B | 0644 |
|
| _cal | File | 872 B | 0644 |
|
| _cargo | File | 372 B | 0644 |
|
| _chamber | File | 349 B | 0644 |
|
| _changie | File | 349 B | 0644 |
|
| _chezmoi | File | 349 B | 0644 |
|
| _chfn | File | 238 B | 0644 |
|
| _chsh | File | 1.03 KB | 0644 |
|
| _cilium | File | 349 B | 0644 |
|
| _cloudquery | File | 349 B | 0644 |
|
| _clusterctl | File | 349 B | 0644 |
|
| _cmctl | File | 349 B | 0644 |
|
| _coder | File | 308 B | 0644 |
|
| _colima | File | 349 B | 0644 |
|
| _conda | File | 508 B | 0644 |
|
| _conform | File | 349 B | 0644 |
|
| _conftest | File | 349 B | 0644 |
|
| _constellation | File | 349 B | 0644 |
|
| _consul | File | 298 B | 0644 |
|
| _container-structure-test | File | 349 B | 0644 |
|
| _cosign | File | 349 B | 0644 |
|
| _crane | File | 349 B | 0644 |
|
| _crc | File | 349 B | 0644 |
|
| _crictl | File | 349 B | 0644 |
|
| _ctlptl | File | 349 B | 0644 |
|
| _cue | File | 349 B | 0644 |
|
| _cz | File | 508 B | 0644 |
|
| _dagger | File | 349 B | 0644 |
|
| _dapr | File | 349 B | 0644 |
|
| _dasel | File | 349 B | 0644 |
|
| _datree | File | 349 B | 0644 |
|
| _deck | File | 349 B | 0644 |
|
| _delta | File | 298 B | 0644 |
|
| _deno | File | 278 B | 0644 |
|
| _depot | File | 349 B | 0644 |
|
| _devspace | File | 349 B | 0644 |
|
| _diesel | File | 278 B | 0644 |
|
| _dlv | File | 349 B | 0644 |
|
| _dmesg | File | 856 B | 0644 |
|
| _docker | File | 349 B | 0644 |
|
| _dprint | File | 278 B | 0644 |
|
| _driftctl | File | 349 B | 0644 |
|
| _dyff | File | 349 B | 0644 |
|
| _eject | File | 823 B | 0644 |
|
| _esc | File | 349 B | 0644 |
|
| _flamegraph | File | 282 B | 0644 |
|
| _flask | File | 494 B | 0644 |
|
| _flux | File | 349 B | 0644 |
|
| _furyctl | File | 349 B | 0644 |
|
| _fx | File | 298 B | 0644 |
|
| _gaiacli | File | 266 B | 0644 |
|
| _gaiad | File | 266 B | 0644 |
|
| _gardenctl | File | 349 B | 0644 |
|
| _gcrane | File | 349 B | 0644 |
|
| _gh | File | 292 B | 0644 |
|
| _gh-label | File | 349 B | 0644 |
|
| _ghorg | File | 349 B | 0644 |
|
| _git-bump | File | 349 B | 0644 |
|
| _gitconfig | File | 349 B | 0644 |
|
| _gitleaks | File | 349 B | 0644 |
|
| _gitsign | File | 349 B | 0644 |
|
| _glen | File | 349 B | 0644 |
|
| _glow | File | 349 B | 0644 |
|
| _go-licenses | File | 349 B | 0644 |
|
| _golangci-lint | File | 349 B | 0644 |
|
| _gopass | File | 349 B | 0644 |
|
| _gopherjs | File | 349 B | 0644 |
|
| _goreleaser | File | 349 B | 0644 |
|
| _grype | File | 349 B | 0644 |
|
| _gsctl | File | 294 B | 0644 |
|
| _gup | File | 349 B | 0644 |
|
| _helm | File | 349 B | 0644 |
|
| _helmfile | File | 349 B | 0644 |
|
| _hexdump | File | 672 B | 0644 |
|
| _hostctl | File | 349 B | 0644 |
|
| _httpx | File | 494 B | 0644 |
|
| _hugo | File | 349 B | 0644 |
|
| _hwclock | File | 631 B | 0644 |
|
| _ignite | File | 349 B | 0644 |
|
| _imgpkg | File | 349 B | 0644 |
|
| _incus | File | 349 B | 0644 |
|
| _infracost | File | 292 B | 0644 |
|
| _insmod | File | 664 B | 0644 |
|
| _insmod.static | File | 664 B | 0644 |
|
| _ionice | File | 1.21 KB | 0644 |
|
| _istioctl | File | 349 B | 0644 |
|
| _jj | File | 286 B | 0644 |
|
| _jungle | File | 528 B | 0644 |
|
| _just | File | 282 B | 0644 |
|
| _jwt | File | 349 B | 0644 |
|
| _k0sctl | File | 349 B | 0644 |
|
| _k3d | File | 349 B | 0644 |
|
| _k3s | File | 349 B | 0644 |
|
| _k3sup | File | 349 B | 0644 |
|
| _k6 | File | 349 B | 0644 |
|
| _k9s | File | 349 B | 0644 |
|
| _kafkactl | File | 349 B | 0644 |
|
| _kapp | File | 349 B | 0644 |
|
| _kata-runtime | File | 805 B | 0644 |
|
| _kconf | File | 349 B | 0644 |
|
| _keyring | File | 373 B | 0644 |
|
| _kind | File | 349 B | 0644 |
|
| _kn | File | 349 B | 0644 |
|
| _ko | File | 349 B | 0644 |
|
| _kompose | File | 349 B | 0644 |
|
| _kontena | File | 704 B | 0644 |
|
| _kool | File | 349 B | 0644 |
|
| _kops | File | 349 B | 0644 |
|
| _krane | File | 349 B | 0644 |
|
| _kratos | File | 349 B | 0644 |
|
| _kube-capacity | File | 349 B | 0644 |
|
| _kube-linter | File | 349 B | 0644 |
|
| _kubeadm | File | 349 B | 0644 |
|
| _kubebuilder | File | 349 B | 0644 |
|
| _kubecm | File | 349 B | 0644 |
|
| _kubectl | File | 349 B | 0644 |
|
| _kubectl-argo-rollouts | File | 349 B | 0644 |
|
| _kubectl-kuttl | File | 349 B | 0644 |
|
| _kubelogin | File | 349 B | 0644 |
|
| _kubemqctl | File | 349 B | 0644 |
|
| _kubescape | File | 349 B | 0644 |
|
| _kubesec | File | 349 B | 0644 |
|
| _kubeshark | File | 349 B | 0644 |
|
| _kubespy | File | 349 B | 0644 |
|
| _kustomize | File | 349 B | 0644 |
|
| _kyverno | File | 349 B | 0644 |
|
| _lefthook | File | 349 B | 0644 |
|
| _limactl | File | 349 B | 0644 |
|
| _linkerd | File | 349 B | 0644 |
|
| _look | File | 468 B | 0644 |
|
| _mattermost | File | 349 B | 0644 |
|
| _mdbook | File | 278 B | 0644 |
|
| _melange | File | 349 B | 0644 |
|
| _metalctl | File | 349 B | 0644 |
|
| _minikube | File | 349 B | 0644 |
|
| _minishift | File | 349 B | 0644 |
|
| _mise | File | 349 B | 0644 |
|
| _mmctl | File | 349 B | 0644 |
|
| _mock | File | 2.22 KB | 0644 |
|
| _mockery | File | 349 B | 0644 |
|
| _modinfo | File | 1.64 KB | 0644 |
|
| _modprobe | File | 4.35 KB | 0644 |
|
| _modules | File | 2.55 KB | 0644 |
|
| _moldy | File | 349 B | 0644 |
|
| _mount | File | 2.11 KB | 0644 |
|
| _mount.linux | File | 10.72 KB | 0644 |
|
| _mtr | File | 247 B | 0644 |
|
| _multi-gitter | File | 349 B | 0644 |
|
| _nerdctl | File | 349 B | 0644 |
|
| _newgrp | File | 474 B | 0644 |
|
| _nfpm | File | 349 B | 0644 |
|
| _ngrok | File | 266 B | 0644 |
|
| _nmcli | File | 5.57 KB | 0644 |
|
| _nomad | File | 298 B | 0644 |
|
| _notation | File | 349 B | 0644 |
|
| _nova | File | 349 B | 0644 |
|
| _nox | File | 508 B | 0644 |
|
| _npm | File | 266 B | 0644 |
|
| _nvm | File | 290 B | 0644 |
|
| _oc | File | 349 B | 0644 |
|
| _odo | File | 349 B | 0644 |
|
| _okteto | File | 349 B | 0644 |
|
| _op | File | 349 B | 0644 |
|
| _opa | File | 349 B | 0644 |
|
| _oras | File | 349 B | 0644 |
|
| _ory | File | 349 B | 0644 |
|
| _packer | File | 298 B | 0644 |
|
| _pip | File | 339 B | 0644 |
|
| _pip3 | File | 339 B | 0644 |
|
| _pipenv | File | 494 B | 0644 |
|
| _pitchfork | File | 349 B | 0644 |
|
| _pluto | File | 349 B | 0644 |
|
| _polygon-edge | File | 349 B | 0644 |
|
| _popeye | File | 349 B | 0644 |
|
| _pulumi | File | 349 B | 0644 |
|
| _px | File | 349 B | 0644 |
|
| _qrpc | File | 349 B | 0644 |
|
| _random | File | 349 B | 0644 |
|
| _rclone | File | 349 B | 0644 |
|
| _regal | File | 349 B | 0644 |
|
| _regctl | File | 349 B | 0644 |
|
| _renice | File | 845 B | 0644 |
|
| _repomanage | File | 630 B | 0644 |
|
| _reptyr | File | 559 B | 0644 |
|
| _rfkill | File | 902 B | 0644 |
|
| _rg | File | 294 B | 0644 |
|
| _rmmod | File | 639 B | 0644 |
|
| _rtcwake | File | 854 B | 0644 |
|
| _ruff | File | 306 B | 0644 |
|
| _runuser | File | 241 B | 0644 |
|
| _rustic | File | 278 B | 0644 |
|
| _rustup | File | 235 B | 0644 |
|
| _secret-tool | File | 1.58 KB | 0644 |
|
| _sentry-cli | File | 278 B | 0644 |
|
| _sinker | File | 349 B | 0644 |
|
| _skaffold | File | 349 B | 0644 |
|
| _slackpkg | File | 3.35 KB | 0644 |
|
| _slsa-verifier | File | 349 B | 0644 |
|
| _sops | File | 805 B | 0644 |
|
| _sopstool | File | 266 B | 0644 |
|
| _spacectl | File | 349 B | 0644 |
|
| _ssh-inscribe | File | 349 B | 0644 |
|
| _sshi | File | 349 B | 0644 |
|
| _starship | File | 278 B | 0644 |
|
| _steampipe | File | 349 B | 0644 |
|
| _stern | File | 280 B | 0644 |
|
| _stripe | File | 328 B | 0644 |
|
| _su | File | 910 B | 0644 |
|
| _svn | File | 8.64 KB | 0644 |
|
| _svnadmin | File | 2.24 KB | 0644 |
|
| _svnlook | File | 1.93 KB | 0644 |
|
| _syft | File | 349 B | 0644 |
|
| _talhelper | File | 349 B | 0644 |
|
| _tanzu | File | 349 B | 0644 |
|
| _tanzu-core | File | 349 B | 0644 |
|
| _task | File | 280 B | 0644 |
|
| _tctl | File | 349 B | 0644 |
|
| _tendermint | File | 266 B | 0644 |
|
| _terraform | File | 298 B | 0644 |
|
| _tfctl | File | 349 B | 0644 |
|
| _tilt | File | 349 B | 0644 |
|
| _timoni | File | 349 B | 0644 |
|
| _tkn | File | 349 B | 0644 |
|
| _tkn-pac | File | 349 B | 0644 |
|
| _todoist | File | 805 B | 0644 |
|
| _tofu | File | 298 B | 0644 |
|
| _tokio-console | File | 284 B | 0644 |
|
| _trivy | File | 349 B | 0644 |
|
| _udevadm | File | 2.08 KB | 0644 |
|
| _umount | File | 637 B | 0644 |
|
| _umount.linux | File | 4.52 KB | 0644 |
|
| _upctl | File | 349 B | 0644 |
|
| _uv | File | 306 B | 0644 |
|
| _uvx | File | 310 B | 0644 |
|
| _vacuum | File | 349 B | 0644 |
|
| _vault | File | 298 B | 0644 |
|
| _vela | File | 349 B | 0644 |
|
| _velero | File | 349 B | 0644 |
|
| _venom | File | 349 B | 0644 |
|
| _virtctl | File | 349 B | 0644 |
|
| _wasmer | File | 286 B | 0644 |
|
| _wasmer-headless | File | 286 B | 0644 |
|
| _watchexec | File | 282 B | 0644 |
|
| _write | File | 239 B | 0644 |
|
| _xc | File | 298 B | 0644 |
|
| _xm | File | 7.51 KB | 0644 |
|
| _yq | File | 288 B | 0644 |
|
| _ytt | File | 349 B | 0644 |
|
| _yum | File | 4.56 KB | 0644 |
|
| _zarf | File | 349 B | 0644 |
|
| _zitadel | File | 349 B | 0644 |
|
| _zola | File | 349 B | 0644 |
|
| a2disconf | File | 1.44 KB | 0644 |
|
| a2dismod | File | 1.44 KB | 0644 |
|
| a2dissite | File | 1.44 KB | 0644 |
|
| a2enconf | File | 1.44 KB | 0644 |
|
| a2enmod | File | 1.44 KB | 0644 |
|
| a2ensite | File | 1.44 KB | 0644 |
|
| a2x | File | 1.03 KB | 0644 |
|
| abook | File | 1.2 KB | 0644 |
|
| aclocal | File | 876 B | 0644 |
|
| aclocal-1.10 | File | 876 B | 0644 |
|
| aclocal-1.11 | File | 876 B | 0644 |
|
| aclocal-1.12 | File | 876 B | 0644 |
|
| aclocal-1.13 | File | 876 B | 0644 |
|
| aclocal-1.14 | File | 876 B | 0644 |
|
| aclocal-1.15 | File | 876 B | 0644 |
|
| aclocal-1.16 | File | 876 B | 0644 |
|
| acpi | File | 549 B | 0644 |
|
| add-apt-repository | File | 2.19 KB | 0644 |
|
| add_members | File | 954 B | 0644 |
|
| alias | File | 704 B | 0644 |
|
| alpine | File | 888 B | 0644 |
|
| alternatives | File | 2.83 KB | 0644 |
|
| animate | File | 8.48 KB | 0644 |
|
| ant | File | 2.8 KB | 0644 |
|
| apache2ctl | File | 408 B | 0644 |
|
| appdata-validate | File | 788 B | 0644 |
|
| apport-bug | File | 5.21 KB | 0644 |
|
| apport-cli | File | 5.21 KB | 0644 |
|
| apport-collect | File | 819 B | 0644 |
|
| apport-unpack | File | 433 B | 0644 |
|
| apropos | File | 3.57 KB | 0644 |
|
| apt | File | 7.42 KB | 0644 |
|
| apt-add-repository | File | 2.19 KB | 0644 |
|
| apt-build | File | 1.38 KB | 0644 |
|
| apt-cache | File | 3.36 KB | 0644 |
|
| apt-get | File | 4.22 KB | 0644 |
|
| apt-mark | File | 1.86 KB | 0644 |
|
| aptitude | File | 3.92 KB | 0644 |
|
| aptitude-curses | File | 3.92 KB | 0644 |
|
| arch | File | 1.41 KB | 0644 |
|
| arm-koji | File | 6.57 KB | 0644 |
|
| arp | File | 1.69 KB | 0644 |
|
| arping | File | 637 B | 0644 |
|
| arpspoof | File | 590 B | 0644 |
|
| asciidoc | File | 1.4 KB | 0644 |
|
| asciidoc.py | File | 1.4 KB | 0644 |
|
| aspell | File | 3.33 KB | 0644 |
|
| autoconf | File | 1002 B | 0644 |
|
| autoheader | File | 1.03 KB | 0644 |
|
| automake | File | 894 B | 0644 |
|
| automake-1.10 | File | 894 B | 0644 |
|
| automake-1.11 | File | 894 B | 0644 |
|
| automake-1.12 | File | 894 B | 0644 |
|
| automake-1.13 | File | 894 B | 0644 |
|
| automake-1.14 | File | 894 B | 0644 |
|
| automake-1.15 | File | 894 B | 0644 |
|
| automake-1.16 | File | 894 B | 0644 |
|
| autoreconf | File | 1.03 KB | 0644 |
|
| autorpm | File | 370 B | 0644 |
|
| autoscan | File | 881 B | 0644 |
|
| autossh | File | 19.65 KB | 0644 |
|
| autoupdate | File | 881 B | 0644 |
|
| avahi-browse | File | 1.04 KB | 0644 |
|
| avahi-browse-domains | File | 1.04 KB | 0644 |
|
| avctrl | File | 476 B | 0644 |
|
| b2sum | File | 860 B | 0644 |
|
| badblocks | File | 704 B | 0644 |
|
| bind | File | 807 B | 0644 |
|
| bk | File | 471 B | 0644 |
|
| blkdiscard | File | 698 B | 0644 |
|
| blkid | File | 2.1 KB | 0644 |
|
| blkzone | File | 1014 B | 0644 |
|
| blockdev | File | 789 B | 0644 |
|
| bmake | File | 6 KB | 0644 |
|
| bpftool | File | 43.7 KB | 0644 |
|
| brctl | File | 1.03 KB | 0644 |
|
| bsdtar | File | 21.63 KB | 0644 |
|
| btdownloadcurses.py | File | 1.07 KB | 0644 |
|
| btdownloadgui.py | File | 1.07 KB | 0644 |
|
| btdownloadheadless.py | File | 1.07 KB | 0644 |
|
| btrfs | File | 3.53 KB | 0644 |
|
| busctl | File | 7.89 KB | 0644 |
|
| bwrap | File | 1.19 KB | 0644 |
|
| bzip2 | File | 1.14 KB | 0644 |
|
| c++ | File | 2.5 KB | 0644 |
|
| cancel | File | 560 B | 0644 |
|
| cardctl | File | 398 B | 0644 |
|
| carton | File | 2.31 KB | 0644 |
|
| cc | File | 2.5 KB | 0644 |
|
| ccache | File | 1.08 KB | 0644 |
|
| ccze | File | 1.26 KB | 0644 |
|
| cd | File | 1.65 KB | 0644 |
|
| cdrecord | File | 3.43 KB | 0644 |
|
| cfagent | File | 431 B | 0644 |
|
| cfdisk | File | 608 B | 0644 |
|
| cfrun | File | 1.24 KB | 0644 |
|
| chage | File | 763 B | 0644 |
|
| change_pw | File | 734 B | 0644 |
|
| chcpu | File | 1.49 KB | 0644 |
|
| check_db | File | 551 B | 0644 |
|
| check_perms | File | 339 B | 0644 |
|
| checksec | File | 1.21 KB | 0644 |
|
| chflags | File | 1.66 KB | 0644 |
|
| chgrp | File | 1009 B | 0644 |
|
| chkconfig | File | 931 B | 0644 |
|
| chmem | File | 501 B | 0644 |
|
| chmod | File | 920 B | 0644 |
|
| chown | File | 1.17 KB | 0644 |
|
| chpasswd | File | 775 B | 0644 |
|
| chrome | File | 1.43 KB | 0644 |
|
| chromium | File | 1.43 KB | 0644 |
|
| chromium-browser | File | 1.43 KB | 0644 |
|
| chronyc | File | 1.61 KB | 0644 |
|
| chrpath | File | 639 B | 0644 |
|
| chrt | File | 920 B | 0644 |
|
| ci | File | 916 B | 0644 |
|
| ciptool | File | 9.48 KB | 0644 |
|
| civclient | File | 1.01 KB | 0644 |
|
| civserver | File | 497 B | 0644 |
|
| cksfv | File | 556 B | 0644 |
|
| cleanarch | File | 358 B | 0644 |
|
| clisp | File | 701 B | 0644 |
|
| clone_member | File | 745 B | 0644 |
|
| cloud-init | File | 3.24 KB | 0644 |
|
| clzip | File | 1.28 KB | 0644 |
|
| co | File | 916 B | 0644 |
|
| col | File | 460 B | 0644 |
|
| colcrt | File | 484 B | 0644 |
|
| colormake | File | 6 KB | 0644 |
|
| colormgr | File | 2.41 KB | 0644 |
|
| colrm | File | 509 B | 0644 |
|
| column | File | 1.43 KB | 0644 |
|
| compare | File | 8.48 KB | 0644 |
|
| compgen | File | 1.36 KB | 0644 |
|
| complete | File | 1.36 KB | 0644 |
|
| composite | File | 8.48 KB | 0644 |
|
| config_list | File | 785 B | 0644 |
|
| configure | File | 1.34 KB | 0644 |
|
| conjure | File | 8.48 KB | 0644 |
|
| convert | File | 8.48 KB | 0644 |
|
| cowsay | File | 522 B | 0644 |
|
| cowthink | File | 522 B | 0644 |
|
| cpan2dist | File | 1.2 KB | 0644 |
|
| cpio | File | 2.79 KB | 0644 |
|
| cppcheck | File | 2.63 KB | 0644 |
|
| createdb | File | 4.94 KB | 0644 |
|
| createuser | File | 4.94 KB | 0644 |
|
| crontab | File | 1.22 KB | 0644 |
|
| cryptsetup | File | 3.21 KB | 0644 |
|
| curl | File | 6.21 KB | 0644 |
|
| cvs | File | 12.59 KB | 0644 |
|
| cvsps | File | 1.45 KB | 0644 |
|
| dconf | File | 1.15 KB | 0644 |
|
| dcop | File | 361 B | 0644 |
|
| dd | File | 1.15 KB | 0644 |
|
| debconf | File | 293 B | 0644 |
|
| debconf-show | File | 293 B | 0644 |
|
| declare | File | 1.14 KB | 0644 |
|
| deja-dup | File | 728 B | 0644 |
|
| desktop-file-validate | File | 484 B | 0644 |
|
| devlink | File | 26.76 KB | 0644 |
|
| dfutool | File | 9.48 KB | 0644 |
|
| dhclient | File | 711 B | 0644 |
|
| dict | File | 2.04 KB | 0644 |
|
| display | File | 8.48 KB | 0644 |
|
| dmesg | File | 1.21 KB | 0644 |
|
| dmypy | File | 1.1 KB | 0644 |
|
| dnssec-keygen | File | 1.17 KB | 0644 |
|
| dnsspoof | File | 523 B | 0644 |
|
| dot | File | 1.29 KB | 0644 |
|
| dpkg | File | 5.35 KB | 0644 |
|
| dpkg-deb | File | 5.35 KB | 0644 |
|
| dpkg-query | File | 5.35 KB | 0644 |
|
| dpkg-reconfigure | File | 5.35 KB | 0644 |
|
| dpkg-source | File | 3.11 KB | 0644 |
|
| dropdb | File | 4.94 KB | 0644 |
|
| dropuser | File | 4.94 KB | 0644 |
|
| dselect | File | 610 B | 0644 |
|
| dsniff | File | 574 B | 0644 |
|
| dumpdb | File | 390 B | 0644 |
|
| dumpe2fs | File | 538 B | 0644 |
|
| e2freefrag | File | 470 B | 0644 |
|
| e2label | File | 334 B | 0644 |
|
| eatmydata | File | 31 B | 0644 |
|
| ebtables | File | 3.75 KB | 0644 |
|
| ecryptfs-migrate-home | File | 480 B | 0644 |
|
| edquota | File | 4.02 KB | 0644 |
|
| eject | File | 1.22 KB | 0644 |
|
| env | File | 1.53 KB | 0644 |
|
| eog | File | 695 B | 0644 |
|
| ether-wake | File | 598 B | 0644 |
|
| etherwake | File | 598 B | 0644 |
|
| ethtool | File | 24.61 KB | 0644 |
|
| evince | File | 1.02 KB | 0644 |
|
| explodepkg | File | 152 B | 0644 |
|
| export | File | 1.6 KB | 0644 |
|
| f77 | File | 2.5 KB | 0644 |
|
| f95 | File | 2.5 KB | 0644 |
|
| faillog | File | 718 B | 0644 |
|
| fallocate | File | 721 B | 0644 |
|
| fbgs | File | 1.52 KB | 0644 |
|
| fbi | File | 1.76 KB | 0644 |
|
| fdisk | File | 1.87 KB | 0644 |
|
| feh | File | 4.2 KB | 0644 |
|
| file | File | 852 B | 0644 |
|
| file-roller | File | 1.28 KB | 0644 |
|
| filebucket | File | 10.13 KB | 0644 |
|
| filefrag | File | 360 B | 0644 |
|
| filesnarf | File | 457 B | 0644 |
|
| find | File | 3.81 KB | 0644 |
|
| find_member | File | 730 B | 0644 |
|
| findfs | File | 695 B | 0644 |
|
| findmnt | File | 3.15 KB | 0644 |
|
| fio | File | 4.27 KB | 0644 |
|
| firefox | File | 1.48 KB | 0644 |
|
| firefox-esr | File | 1.48 KB | 0644 |
|
| flake8 | File | 1.12 KB | 0644 |
|
| flock | File | 874 B | 0644 |
|
| fprintd-delete | File | 316 B | 0644 |
|
| fprintd-enroll | File | 1.01 KB | 0644 |
|
| fprintd-list | File | 316 B | 0644 |
|
| fprintd-verify | File | 1.01 KB | 0644 |
|
| freeciv | File | 1.01 KB | 0644 |
|
| freeciv-gtk2 | File | 1.01 KB | 0644 |
|
| freeciv-gtk3 | File | 1.01 KB | 0644 |
|
| freeciv-sdl | File | 1.01 KB | 0644 |
|
| freeciv-server | File | 497 B | 0644 |
|
| freeciv-xaw | File | 1.01 KB | 0644 |
|
| fsck | File | 770 B | 0644 |
|
| fsfreeze | File | 524 B | 0644 |
|
| fstrim | File | 755 B | 0644 |
|
| function | File | 461 B | 0644 |
|
| fusermount | File | 626 B | 0644 |
|
| fwupdmgr | File | 9.41 KB | 0644 |
|
| fwupdtool | File | 8.04 KB | 0644 |
|
| g++ | File | 2.5 KB | 0644 |
|
| g++-5 | File | 2.5 KB | 0644 |
|
| g++-6 | File | 2.5 KB | 0644 |
|
| g++-7 | File | 2.5 KB | 0644 |
|
| g++-8 | File | 2.5 KB | 0644 |
|
| g4 | File | 1.33 KB | 0644 |
|
| g77 | File | 2.5 KB | 0644 |
|
| g95 | File | 2.5 KB | 0644 |
|
| gapplication | File | 2.31 KB | 0644 |
|
| gcc | File | 2.5 KB | 0644 |
|
| gcc-5 | File | 2.5 KB | 0644 |
|
| gcc-6 | File | 2.5 KB | 0644 |
|
| gcc-7 | File | 2.5 KB | 0644 |
|
| gcc-8 | File | 2.5 KB | 0644 |
|
| gccgo | File | 2.5 KB | 0644 |
|
| gccgo-5 | File | 2.5 KB | 0644 |
|
| gccgo-6 | File | 2.5 KB | 0644 |
|
| gccgo-7 | File | 2.5 KB | 0644 |
|
| gccgo-8 | File | 2.5 KB | 0644 |
|
| gcj | File | 2.5 KB | 0644 |
|
| gcl | File | 648 B | 0644 |
|
| gdb | File | 1.67 KB | 0644 |
|
| gdbus | File | 1.77 KB | 0644 |
|
| gdctl | File | 2.58 KB | 0644 |
|
| genaliases | File | 342 B | 0644 |
|
| gendiff | File | 316 B | 0644 |
|
| genisoimage | File | 911 B | 0644 |
|
| geoiplookup | File | 717 B | 0644 |
|
| geoiplookup6 | File | 717 B | 0644 |
|
| getconf | File | 837 B | 0644 |
|
| getent | File | 1.99 KB | 0644 |
|
| getopt | File | 815 B | 0644 |
|
| gfortran | File | 2.5 KB | 0644 |
|
| gfortran-5 | File | 2.5 KB | 0644 |
|
| gfortran-6 | File | 2.5 KB | 0644 |
|
| gfortran-7 | File | 2.5 KB | 0644 |
|
| gfortran-8 | File | 2.5 KB | 0644 |
|
| gio | File | 3.93 KB | 0644 |
|
| gkrellm | File | 989 B | 0644 |
|
| gkrellm2 | File | 989 B | 0644 |
|
| gm | File | 923 B | 0644 |
|
| gmake | File | 6 KB | 0644 |
|
| gmplayer | File | 11.15 KB | 0644 |
|
| gnatmake | File | 1.02 KB | 0644 |
|
| gnokii | File | 6.69 KB | 0644 |
|
| gnome-control-center | File | 1.67 KB | 0644 |
|
| gnome-extensions | File | 2.01 KB | 0644 |
|
| gnome-mplayer | File | 959 B | 0644 |
|
| gnome-screenshot | File | 907 B | 0644 |
|
| gnumake | File | 6 KB | 0644 |
|
| google-chrome | File | 1.43 KB | 0644 |
|
| google-chrome-stable | File | 1.43 KB | 0644 |
|
| gpasswd | File | 643 B | 0644 |
|
| gpc | File | 2.5 KB | 0644 |
|
| gpg | File | 1.99 KB | 0644 |
|
| gpg2 | File | 1.55 KB | 0644 |
|
| gpgv | File | 1.16 KB | 0644 |
|
| gpgv2 | File | 1.16 KB | 0644 |
|
| gphoto2 | File | 1.37 KB | 0644 |
|
| gprof | File | 1.34 KB | 0644 |
|
| gresource | File | 2.14 KB | 0644 |
|
| groupadd | File | 705 B | 0644 |
|
| groupdel | File | 532 B | 0644 |
|
| groupmems | File | 589 B | 0644 |
|
| groupmod | File | 760 B | 0644 |
|
| growisofs | File | 923 B | 0644 |
|
| grpck | File | 568 B | 0644 |
|
| grub | File | 10.68 KB | 0644 |
|
| grub-editenv | File | 10.68 KB | 0644 |
|
| grub-install | File | 10.68 KB | 0644 |
|
| grub-mkconfig | File | 10.68 KB | 0644 |
|
| grub-mkfont | File | 10.68 KB | 0644 |
|
| grub-mkimage | File | 10.68 KB | 0644 |
|
| grub-mkpasswd-pbkdf2 | File | 10.68 KB | 0644 |
|
| grub-mkrescue | File | 10.68 KB | 0644 |
|
| grub-probe | File | 10.68 KB | 0644 |
|
| grub-reboot | File | 10.68 KB | 0644 |
|
| grub-script-check | File | 10.68 KB | 0644 |
|
| grub-set-default | File | 10.68 KB | 0644 |
|
| gsettings | File | 4.12 KB | 0644 |
|
| gssdp-device-sniffer | File | 953 B | 0644 |
|
| gssdp-discover | File | 953 B | 0644 |
|
| gst-inspect-1.0 | File | 2.54 KB | 0644 |
|
| gst-launch-1.0 | File | 3.4 KB | 0644 |
|
| gtar | File | 21.63 KB | 0644 |
|
| gzip | File | 1.31 KB | 0644 |
|
| hardlink | File | 1.37 KB | 0644 |
|
| hash | File | 545 B | 0644 |
|
| hciattach | File | 9.48 KB | 0644 |
|
| hciconfig | File | 9.48 KB | 0644 |
|
| hcitool | File | 9.48 KB | 0644 |
|
| hd | File | 672 B | 0644 |
|
| hddtemp | File | 1.02 KB | 0644 |
|
| help | File | 427 B | 0644 |
|
| hexdump | File | 1 KB | 0644 |
|
| hid2hci | File | 354 B | 0644 |
|
| host | File | 2.63 KB | 0644 |
|
| hostname | File | 604 B | 0644 |
|
| hostnamectl | File | 2.71 KB | 0644 |
|
| hping | File | 975 B | 0644 |
|
| hping2 | File | 975 B | 0644 |
|
| hping3 | File | 975 B | 0644 |
|
| htop | File | 871 B | 0644 |
|
| htpasswd | File | 905 B | 0644 |
|
| hunspell | File | 964 B | 0644 |
|
| ibus.bash | File | 3.33 KB | 0644 |
|
| iceweasel | File | 1.48 KB | 0644 |
|
| iconv | File | 1.27 KB | 0644 |
|
| id | File | 399 B | 0644 |
|
| identify | File | 8.48 KB | 0644 |
|
| idn | File | 735 B | 0644 |
|
| ifdown | File | 974 B | 0644 |
|
| ifquery | File | 974 B | 0644 |
|
| ifstat | File | 2.08 KB | 0644 |
|
| ifstatus | File | 974 B | 0644 |
|
| iftop | File | 663 B | 0644 |
|
| ifup | File | 974 B | 0644 |
|
| import | File | 8.48 KB | 0644 |
|
| influx | File | 855 B | 0644 |
|
| info | File | 2.07 KB | 0644 |
|
| inject | File | 726 B | 0644 |
|
| inotifywait | File | 1.37 KB | 0644 |
|
| inotifywatch | File | 1.37 KB | 0644 |
|
| installpkg | File | 774 B | 0644 |
|
| interdiff | File | 873 B | 0644 |
|
| invoke-rc.d | File | 1.21 KB | 0644 |
|
| ionice | File | 1.13 KB | 0644 |
|
| ip | File | 21.6 KB | 0644 |
|
| ipcalc | File | 539 B | 0644 |
|
| ipcmk | File | 576 B | 0644 |
|
| ipcrm | File | 1.39 KB | 0644 |
|
| ipcs | File | 514 B | 0644 |
|
| iperf | File | 3.12 KB | 0644 |
|
| iperf3 | File | 3.12 KB | 0644 |
|
| ipmitool | File | 5.24 KB | 0644 |
|
| ipsec | File | 3 KB | 0644 |
|
| iptables | File | 2.06 KB | 0644 |
|
| ipv6calc | File | 1.1 KB | 0644 |
|
| iscsiadm | File | 1.92 KB | 0644 |
|
| isort | File | 1.31 KB | 0644 |
|
| isosize | File | 529 B | 0644 |
|
| isql | File | 429 B | 0644 |
|
| iwconfig | File | 2.58 KB | 0644 |
|
| iwlist | File | 624 B | 0644 |
|
| iwpriv | File | 710 B | 0644 |
|
| iwspy | File | 495 B | 0644 |
|
| jar | File | 556 B | 0644 |
|
| jarsigner | File | 1.67 KB | 0644 |
|
| java | File | 9.67 KB | 0644 |
|
| javac | File | 9.67 KB | 0644 |
|
| javadoc | File | 9.67 KB | 0644 |
|
| javaws | File | 833 B | 0644 |
|
| journalctl | File | 6.41 KB | 0644 |
|
| jpegoptim | File | 993 B | 0644 |
|
| jps | File | 637 B | 0644 |
|
| jq | File | 2.46 KB | 0644 |
|
| jshint | File | 908 B | 0644 |
|
| json_xs | File | 858 B | 0644 |
|
| jsonschema | File | 672 B | 0644 |
|
| k3b | File | 1.23 KB | 0644 |
|
| kcov | File | 1.74 KB | 0644 |
|
| kernel-install | File | 1.67 KB | 0644 |
|
| kill | File | 704 B | 0644 |
|
| killall | File | 941 B | 0644 |
|
| kmod | File | 2.54 KB | 0644 |
|
| koji | File | 6.57 KB | 0644 |
|
| kplayer | File | 11.15 KB | 0644 |
|
| ktutil | File | 3.09 KB | 0644 |
|
| l2ping | File | 9.48 KB | 0644 |
|
| larch | File | 1.94 KB | 0644 |
|
| lastlog | File | 661 B | 0644 |
|
| lbzip2 | File | 1.14 KB | 0644 |
|
| ldapadd | File | 4.95 KB | 0644 |
|
| ldapcompare | File | 4.95 KB | 0644 |
|
| ldapdelete | File | 4.95 KB | 0644 |
|
| ldapmodify | File | 4.95 KB | 0644 |
|
| ldapmodrdn | File | 4.95 KB | 0644 |
|
| ldappasswd | File | 4.95 KB | 0644 |
|
| ldapsearch | File | 4.95 KB | 0644 |
|
| ldapvi | File | 1.29 KB | 0644 |
|
| ldapwhoami | File | 4.95 KB | 0644 |
|
| ldattach | File | 1.44 KB | 0644 |
|
| lftp | File | 710 B | 0644 |
|
| lftpget | File | 326 B | 0644 |
|
| libreoffice | File | 6.53 KB | 0644 |
|
| lilo | File | 1.64 KB | 0644 |
|
| links | File | 3.22 KB | 0644 |
|
| links2 | File | 3.22 KB | 0644 |
|
| lintian | File | 5.53 KB | 0644 |
|
| lintian-info | File | 5.53 KB | 0644 |
|
| lisp | File | 664 B | 0644 |
|
| list_admins | File | 562 B | 0644 |
|
| list_lists | File | 607 B | 0644 |
|
| list_members | File | 1008 B | 0644 |
|
| list_owners | File | 574 B | 0644 |
|
| locale-gen | File | 725 B | 0644 |
|
| localectl | File | 3.28 KB | 0644 |
|
| logger | File | 1.64 KB | 0644 |
|
| loginctl | File | 4.18 KB | 0644 |
|
| look | File | 683 B | 0644 |
|
| losetup | File | 1.7 KB | 0644 |
|
| lpq | File | 594 B | 0644 |
|
| lpr | File | 889 B | 0644 |
|
| lrzip | File | 1.35 KB | 0644 |
|
| lsblk | File | 2.26 KB | 0644 |
|
| lscpu | File | 1.04 KB | 0644 |
|
| lsipc | File | 1.28 KB | 0644 |
|
| lslocks | File | 1.08 KB | 0644 |
|
| lslogins | File | 1.71 KB | 0644 |
|
| lsmem | File | 1.04 KB | 0644 |
|
| lsns | File | 1.18 KB | 0644 |
|
| lsof | File | 1.41 KB | 0644 |
|
| lsscsi | File | 698 B | 0644 |
|
| lsusb | File | 494 B | 0644 |
|
| lua | File | 462 B | 0644 |
|
| lua5.0 | File | 462 B | 0644 |
|
| lua5.1 | File | 462 B | 0644 |
|
| lua5.2 | File | 462 B | 0644 |
|
| lua5.3 | File | 462 B | 0644 |
|
| lua5.4 | File | 462 B | 0644 |
|
| lua50 | File | 462 B | 0644 |
|
| lua51 | File | 462 B | 0644 |
|
| lua52 | File | 462 B | 0644 |
|
| lua53 | File | 462 B | 0644 |
|
| lua54 | File | 462 B | 0644 |
|
| luac | File | 523 B | 0644 |
|
| luac5.0 | File | 523 B | 0644 |
|
| luac5.1 | File | 523 B | 0644 |
|
| luac5.2 | File | 523 B | 0644 |
|
| luac5.3 | File | 523 B | 0644 |
|
| luac5.4 | File | 523 B | 0644 |
|
| luac50 | File | 523 B | 0644 |
|
| luac51 | File | 523 B | 0644 |
|
| luac52 | File | 523 B | 0644 |
|
| luac53 | File | 523 B | 0644 |
|
| luac54 | File | 523 B | 0644 |
|
| luseradd | File | 1.16 KB | 0644 |
|
| luserdel | File | 458 B | 0644 |
|
| lusermod | File | 1.16 KB | 0644 |
|
| lvchange | File | 21.02 KB | 0644 |
|
| lvcreate | File | 21.02 KB | 0644 |
|
| lvdisplay | File | 21.02 KB | 0644 |
|
| lvextend | File | 21.02 KB | 0644 |
|
| lvm | File | 21.02 KB | 0644 |
|
| lvmdiskscan | File | 21.02 KB | 0644 |
|
| lvreduce | File | 21.02 KB | 0644 |
|
| lvremove | File | 21.02 KB | 0644 |
|
| lvrename | File | 21.02 KB | 0644 |
|
| lvresize | File | 21.02 KB | 0644 |
|
| lvs | File | 21.02 KB | 0644 |
|
| lvscan | File | 21.02 KB | 0644 |
|
| lz4 | File | 1.2 KB | 0644 |
|
| lz4c | File | 1.2 KB | 0644 |
|
| lzip | File | 1.28 KB | 0644 |
|
| lzma | File | 927 B | 0644 |
|
| lzop | File | 1.5 KB | 0644 |
|
| macof | File | 434 B | 0644 |
|
| mailmanctl | File | 467 B | 0644 |
|
| mailsnarf | File | 457 B | 0644 |
|
| make | File | 6 KB | 0644 |
|
| makepkg | File | 1.03 KB | 0644 |
|
| man | File | 3.57 KB | 0644 |
|
| mbimcli | File | 2.59 KB | 0644 |
|
| mc | File | 814 B | 0644 |
|
| mcookie | File | 599 B | 0644 |
|
| mcrypt | File | 1.76 KB | 0644 |
|
| md5sum | File | 860 B | 0644 |
|
| mdadm | File | 4.52 KB | 0644 |
|
| mdecrypt | File | 1.76 KB | 0644 |
|
| mdtool | File | 1.92 KB | 0644 |
|
| medusa | File | 695 B | 0644 |
|
| mencoder | File | 11.15 KB | 0644 |
|
| mfiutil | File | 3.87 KB | 0644 |
|
| micropython | File | 3.28 KB | 0644 |
|
| mii-diag | File | 663 B | 0644 |
|
| mii-tool | File | 925 B | 0644 |
|
| minicom | File | 1.1 KB | 0644 |
|
| mkfs | File | 659 B | 0644 |
|
| mkinitrd | File | 1.28 KB | 0644 |
|
| mkisofs | File | 911 B | 0644 |
|
| mkswap | File | 1.04 KB | 0644 |
|
| mktemp | File | 758 B | 0644 |
|
| mmcli | File | 5.51 KB | 0644 |
|
| mmsitepass | File | 348 B | 0644 |
|
| mogrify | File | 8.48 KB | 0644 |
|
| mokutil | File | 1.16 KB | 0644 |
|
| monodevelop | File | 472 B | 0644 |
|
| montage | File | 8.48 KB | 0644 |
|
| more | File | 752 B | 0644 |
|
| mount | File | 2.06 KB | 0644 |
|
| mountpoint | File | 498 B | 0644 |
|
| mozilla-firefox | File | 1.48 KB | 0644 |
|
| mplayer | File | 11.15 KB | 0644 |
|
| mplayer2 | File | 11.15 KB | 0644 |
|
| mr | File | 2.81 KB | 0644 |
|
| mrsasutil | File | 3.87 KB | 0644 |
|
| msgsnarf | File | 457 B | 0644 |
|
| msynctool | File | 1.23 KB | 0644 |
|
| mtr | File | 1.9 KB | 0644 |
|
| mtx | File | 1.15 KB | 0644 |
|
| munin-node-configure | File | 767 B | 0644 |
|
| munin-run | File | 641 B | 0644 |
|
| munin-update | File | 693 B | 0644 |
|
| munindoc | File | 333 B | 0644 |
|
| mussh | File | 1.15 KB | 0644 |
|
| mutt | File | 5.05 KB | 0644 |
|
| muttng | File | 5.05 KB | 0644 |
|
| mypy | File | 1.6 KB | 0644 |
|
| mysql | File | 2.97 KB | 0644 |
|
| mysqladmin | File | 1.88 KB | 0644 |
|
| namei | File | 500 B | 0644 |
|
| nc | File | 1.16 KB | 0644 |
|
| ncal | File | 872 B | 0644 |
|
| ncftp | File | 614 B | 0644 |
|
| neomutt | File | 5.05 KB | 0644 |
|
| nethogs | File | 566 B | 0644 |
|
| netplan | File | 2.76 KB | 0644 |
|
| networkctl | File | 3.12 KB | 0644 |
|
| newgrp | File | 610 B | 0644 |
|
| newlist | File | 754 B | 0644 |
|
| newusers | File | 666 B | 0644 |
|
| ngrep | File | 858 B | 0644 |
|
| nmap | File | 1.65 KB | 0644 |
|
| nmcli | File | 3.75 KB | 0644 |
|
| nproc | File | 510 B | 0644 |
|
| nsenter | File | 1.24 KB | 0644 |
|
| nslookup | File | 2.63 KB | 0644 |
|
| nsupdate | File | 868 B | 0644 |
|
| ntpdate | File | 725 B | 0644 |
|
| oggdec | File | 974 B | 0644 |
|
| oomctl | File | 1.64 KB | 0644 |
|
| openssl | File | 4.15 KB | 0644 |
|
| openvpn | File | 553 B | 0644 |
|
| opera | File | 1.38 KB | 0644 |
|
| optipng | File | 1.09 KB | 0644 |
|
| p4 | File | 1.33 KB | 0644 |
|
| pack200 | File | 2.22 KB | 0644 |
|
| partx | File | 1.27 KB | 0644 |
|
| passwd | File | 625 B | 0644 |
|
| patch | File | 1.85 KB | 0644 |
|
| pbzip2 | File | 1.14 KB | 0644 |
|
| pccardctl | File | 398 B | 0644 |
|
| pdftoppm | File | 864 B | 0644 |
|
| pdftotext | File | 973 B | 0644 |
|
| pdlzip | File | 1.28 KB | 0644 |
|
| perl | File | 4.22 KB | 0644 |
|
| perlcritic | File | 1.21 KB | 0644 |
|
| perldoc | File | 4.22 KB | 0644 |
|
| perltidy | File | 1.88 KB | 0644 |
|
| pgrep | File | 1.66 KB | 0644 |
|
| phing | File | 2.8 KB | 0644 |
|
| pidof | File | 633 B | 0644 |
|
| pigz | File | 1.31 KB | 0644 |
|
| pine | File | 888 B | 0644 |
|
| pinfo | File | 2.07 KB | 0644 |
|
| ping | File | 1.93 KB | 0644 |
|
| ping4 | File | 1.93 KB | 0644 |
|
| ping6 | File | 1.93 KB | 0644 |
|
| pivot_root | File | 387 B | 0644 |
|
| pkcon | File | 2.67 KB | 0644 |
|
| pkg-config | File | 1.29 KB | 0644 |
|
| pkg-get | File | 2.14 KB | 0644 |
|
| pkgadd | File | 1.76 KB | 0644 |
|
| pkgconf | File | 1.29 KB | 0644 |
|
| pkgrm | File | 1.07 KB | 0644 |
|
| pkgtool | File | 872 B | 0644 |
|
| pkill | File | 1.66 KB | 0644 |
|
| plague-client | File | 429 B | 0644 |
|
| plzip | File | 1.28 KB | 0644 |
|
| pm-hibernate | File | 353 B | 0644 |
|
| pm-is-supported | File | 346 B | 0644 |
|
| pm-powersave | File | 302 B | 0644 |
|
| pm-suspend | File | 353 B | 0644 |
|
| pm-suspend-hybrid | File | 353 B | 0644 |
|
| pmake | File | 6 KB | 0644 |
|
| pngfix | File | 819 B | 0644 |
|
| poff | File | 688 B | 0644 |
|
| pon | File | 440 B | 0644 |
|
| postalias | File | 944 B | 0644 |
|
| postcat | File | 757 B | 0644 |
|
| postconf | File | 834 B | 0644 |
|
| postfix | File | 676 B | 0644 |
|
| postmap | File | 944 B | 0644 |
|
| postsuper | File | 1.08 KB | 0644 |
|
| povray | File | 2.33 KB | 0644 |
|
| powerprofilesctl | File | 6.82 KB | 0644 |
|
| ppc-koji | File | 6.57 KB | 0644 |
|
| prelink | File | 1014 B | 0644 |
|
| printenv | File | 447 B | 0644 |
|
| prlimit | File | 1.3 KB | 0644 |
|
| pro | File | 1.95 KB | 0644 |
|
| protoc | File | 1.47 KB | 0644 |
|
| ps | File | 1.92 KB | 0644 |
|
| psql | File | 4.94 KB | 0644 |
|
| puppet | File | 10.13 KB | 0644 |
|
| puppetca | File | 10.13 KB | 0644 |
|
| puppetd | File | 10.13 KB | 0644 |
|
| puppetdoc | File | 10.13 KB | 0644 |
|
| puppetmasterd | File | 10.13 KB | 0644 |
|
| puppetqd | File | 10.13 KB | 0644 |
|
| puppetrun | File | 10.13 KB | 0644 |
|
| pushd | File | 1.65 KB | 0644 |
|
| pv | File | 904 B | 0644 |
|
| pvchange | File | 21.02 KB | 0644 |
|
| pvcreate | File | 21.02 KB | 0644 |
|
| pvdisplay | File | 21.02 KB | 0644 |
|
| pvmove | File | 21.02 KB | 0644 |
|
| pvremove | File | 21.02 KB | 0644 |
|
| pvs | File | 21.02 KB | 0644 |
|
| pvscan | File | 21.02 KB | 0644 |
|
| pwck | File | 370 B | 0644 |
|
| pwd | File | 368 B | 0644 |
|
| pwdx | File | 481 B | 0644 |
|
| pwgen | File | 708 B | 0644 |
|
| pxz | File | 1.6 KB | 0644 |
|
| py.test | File | 4.35 KB | 0644 |
|
| py.test-2 | File | 4.35 KB | 0644 |
|
| py.test-3 | File | 4.35 KB | 0644 |
|
| pycodestyle | File | 754 B | 0644 |
|
| pydoc | File | 1.09 KB | 0644 |
|
| pydoc3 | File | 1.09 KB | 0644 |
|
| pydocstyle | File | 860 B | 0644 |
|
| pyflakes | File | 457 B | 0644 |
|
| pygmentize | File | 1.03 KB | 0644 |
|
| pylint | File | 4.31 KB | 0644 |
|
| pylint-2 | File | 4.31 KB | 0644 |
|
| pylint-3 | File | 4.31 KB | 0644 |
|
| pypy | File | 3.28 KB | 0644 |
|
| pypy3 | File | 3.28 KB | 0644 |
|
| pyston | File | 3.28 KB | 0644 |
|
| pyston3 | File | 3.28 KB | 0644 |
|
| pytest | File | 4.35 KB | 0644 |
|
| pytest-2 | File | 4.35 KB | 0644 |
|
| pytest-3 | File | 4.35 KB | 0644 |
|
| python | File | 3.28 KB | 0644 |
|
| python2 | File | 3.28 KB | 0644 |
|
| python2.7 | File | 3.28 KB | 0644 |
|
| python3 | File | 3.28 KB | 0644 |
|
| python3.10 | File | 3.28 KB | 0644 |
|
| python3.11 | File | 3.28 KB | 0644 |
|
| python3.12 | File | 3.28 KB | 0644 |
|
| python3.13 | File | 3.28 KB | 0644 |
|
| python3.3 | File | 3.28 KB | 0644 |
|
| python3.4 | File | 3.28 KB | 0644 |
|
| python3.5 | File | 3.28 KB | 0644 |
|
| python3.6 | File | 3.28 KB | 0644 |
|
| python3.7 | File | 3.28 KB | 0644 |
|
| python3.8 | File | 3.28 KB | 0644 |
|
| python3.9 | File | 3.28 KB | 0644 |
|
| pyvenv | File | 510 B | 0644 |
|
| pyvenv-3.10 | File | 510 B | 0644 |
|
| pyvenv-3.11 | File | 510 B | 0644 |
|
| pyvenv-3.12 | File | 510 B | 0644 |
|
| pyvenv-3.13 | File | 510 B | 0644 |
|
| pyvenv-3.4 | File | 510 B | 0644 |
|
| pyvenv-3.5 | File | 510 B | 0644 |
|
| pyvenv-3.6 | File | 510 B | 0644 |
|
| pyvenv-3.7 | File | 510 B | 0644 |
|
| pyvenv-3.8 | File | 510 B | 0644 |
|
| pyvenv-3.9 | File | 510 B | 0644 |
|
| qdbus | File | 361 B | 0644 |
|
| qemu | File | 3.22 KB | 0644 |
|
| qemu-kvm | File | 3.22 KB | 0644 |
|
| qemu-system-i386 | File | 3.22 KB | 0644 |
|
| qemu-system-x86_64 | File | 3.22 KB | 0644 |
|
| qmicli | File | 5.16 KB | 0644 |
|
| qrunner | File | 413 B | 0644 |
|
| querybts | File | 1.22 KB | 0644 |
|
| quota | File | 4.02 KB | 0644 |
|
| quotacheck | File | 4.02 KB | 0644 |
|
| quotaoff | File | 4.02 KB | 0644 |
|
| quotaon | File | 4.02 KB | 0644 |
|
| radvdump | File | 484 B | 0644 |
|
| ralsh | File | 10.13 KB | 0644 |
|
| rcs | File | 916 B | 0644 |
|
| rcsdiff | File | 916 B | 0644 |
|
| rdesktop | File | 1.43 KB | 0644 |
|
| rdict | File | 2.04 KB | 0644 |
|
| readprofile | File | 679 B | 0644 |
|
| remove_members | File | 775 B | 0644 |
|
| removepkg | File | 539 B | 0644 |
|
| renice | File | 784 B | 0644 |
|
| reportbug | File | 2.6 KB | 0644 |
|
| repquota | File | 4.02 KB | 0644 |
|
| resizepart | File | 605 B | 0644 |
|
| resolvconf | File | 461 B | 0644 |
|
| resolvectl | File | 6.57 KB | 0644 |
|
| rev | File | 439 B | 0644 |
|
| rfcomm | File | 9.48 KB | 0644 |
|
| rfkill | File | 962 B | 0644 |
|
| ri | File | 4.12 KB | 0644 |
|
| rlog | File | 916 B | 0644 |
|
| rmlist | File | 540 B | 0644 |
|
| route | File | 837 B | 0644 |
|
| rpcdebug | File | 1 KB | 0644 |
|
| rpm | File | 11.13 KB | 0644 |
|
| rpm2targz | File | 401 B | 0644 |
|
| rpm2tgz | File | 401 B | 0644 |
|
| rpm2txz | File | 401 B | 0644 |
|
| rpmbuild | File | 11.13 KB | 0644 |
|
| rpmbuild-md5 | File | 11.13 KB | 0644 |
|
| rpmcheck | File | 558 B | 0644 |
|
| rrdtool | File | 469 B | 0644 |
|
| rsync | File | 3.61 KB | 0644 |
|
| rtcwake | File | 1.06 KB | 0644 |
|
| run0 | File | 4.23 KB | 0644 |
|
| runuser | File | 892 B | 0644 |
|
| s390-koji | File | 6.57 KB | 0644 |
|
| sbcl | File | 707 B | 0644 |
|
| sbcl-mt | File | 707 B | 0644 |
|
| sbopkg | File | 1.7 KB | 0644 |
|
| scp | File | 19.65 KB | 0644 |
|
| screen | File | 3.27 KB | 0644 |
|
| script | File | 1.04 KB | 0644 |
|
| scriptlive | File | 762 B | 0644 |
|
| scriptreplay | File | 917 B | 0644 |
|
| scrub | File | 1001 B | 0644 |
|
| sdptool | File | 9.48 KB | 0644 |
|
| set | File | 1.16 KB | 0644 |
|
| setarch | File | 790 B | 0644 |
|
| setpriv | File | 3.05 KB | 0644 |
|
| setquota | File | 4.02 KB | 0644 |
|
| setsid | File | 440 B | 0644 |
|
| setterm | File | 2.53 KB | 0644 |
|
| sfdisk | File | 2.1 KB | 0644 |
|
| sftp | File | 19.65 KB | 0644 |
|
| sh | File | 871 B | 0644 |
|
| sha1sum | File | 860 B | 0644 |
|
| sha224sum | File | 860 B | 0644 |
|
| sha256sum | File | 860 B | 0644 |
|
| sha384sum | File | 860 B | 0644 |
|
| sha512sum | File | 860 B | 0644 |
|
| shasum | File | 860 B | 0644 |
|
| shellcheck | File | 1.76 KB | 0644 |
|
| sidedoor | File | 19.65 KB | 0644 |
|
| sitecopy | File | 1.38 KB | 0644 |
|
| slabtop | File | 811 B | 0644 |
|
| slapt-get | File | 2.48 KB | 0644 |
|
| slapt-src | File | 1.97 KB | 0644 |
|
| slogin | File | 19.65 KB | 0644 |
|
| smartctl | File | 3.72 KB | 0644 |
|
| smbcacls | File | 8.13 KB | 0644 |
|
| smbclient | File | 8.13 KB | 0644 |
|
| smbcquotas | File | 8.13 KB | 0644 |
|
| smbget | File | 8.13 KB | 0644 |
|
| smbpasswd | File | 8.13 KB | 0644 |
|
| smbtar | File | 8.13 KB | 0644 |
|
| smbtree | File | 8.13 KB | 0644 |
|
| snap | File | 2.48 KB | 0644 |
|
| snownews | File | 360 B | 0644 |
|
| sparc-koji | File | 6.57 KB | 0644 |
|
| spovray | File | 2.33 KB | 0644 |
|
| sqlite3 | File | 900 B | 0644 |
|
| ss | File | 1.26 KB | 0644 |
|
| ssh | File | 19.65 KB | 0644 |
|
| ssh-add | File | 1.08 KB | 0644 |
|
| ssh-copy-id | File | 931 B | 0644 |
|
| ssh-keygen | File | 5.87 KB | 0644 |
|
| ssh-keyscan | File | 1.13 KB | 0644 |
|
| sshfs | File | 627 B | 0644 |
|
| sshmitm | File | 369 B | 0644 |
|
| sshow | File | 521 B | 0644 |
|
| star | File | 21.63 KB | 0644 |
|
| strace | File | 3.24 KB | 0644 |
|
| stream | File | 8.48 KB | 0644 |
|
| strings | File | 1.5 KB | 0644 |
|
| su | File | 892 B | 0644 |
|
| sudo | File | 1.61 KB | 0644 |
|
| sudoedit | File | 1.61 KB | 0644 |
|
| svcadm | File | 5.02 KB | 0644 |
|
| svk | File | 8.53 KB | 0644 |
|
| swaplabel | File | 635 B | 0644 |
|
| swapoff | File | 743 B | 0644 |
|
| swapon | File | 1.97 KB | 0644 |
|
| sync_members | File | 923 B | 0644 |
|
| synclient | File | 581 B | 0644 |
|
| sysbench | File | 3.75 KB | 0644 |
|
| sysctl | File | 872 B | 0644 |
|
| systemctl | File | 15.77 KB | 0644 |
|
| systemd-analyze | File | 8.12 KB | 0644 |
|
| systemd-cat | File | 1.87 KB | 0644 |
|
| systemd-cgls | File | 2.33 KB | 0644 |
|
| systemd-cgtop | File | 2.21 KB | 0644 |
|
| systemd-confext | File | 2.64 KB | 0644 |
|
| systemd-creds | File | 5.28 KB | 0644 |
|
| systemd-cryptenroll | File | 3.7 KB | 0644 |
|
| systemd-delta | File | 1.77 KB | 0644 |
|
| systemd-detect-virt | File | 1.34 KB | 0644 |
|
| systemd-dissect | File | 3.8 KB | 0644 |
|
| systemd-id128 | File | 2.47 KB | 0644 |
|
| systemd-path | File | 1.72 KB | 0644 |
|
| systemd-resolve | File | 2.7 KB | 0644 |
|
| systemd-run | File | 5.5 KB | 0644 |
|
| systemd-sysext | File | 2.41 KB | 0644 |
|
| systemd-vpick | File | 1.78 KB | 0644 |
|
| tar | File | 21.63 KB | 0644 |
|
| taskset | File | 1.18 KB | 0644 |
|
| tc | File | 25.87 KB | 0644 |
|
| tcpdump | File | 1.7 KB | 0644 |
|
| tcpkill | File | 473 B | 0644 |
|
| tcpnice | File | 441 B | 0644 |
|
| tightvncviewer | File | 3.02 KB | 0644 |
|
| timedatectl | File | 2.97 KB | 0644 |
|
| timeout | File | 1014 B | 0644 |
|
| tinysparql | File | 1.12 KB | 0644 |
|
| tipc | File | 8.11 KB | 0644 |
|
| tox | File | 1.38 KB | 0644 |
|
| trace-cmd.bash | File | 6.9 KB | 0644 |
|
| tracepath | File | 543 B | 0644 |
|
| tracepath6 | File | 543 B | 0644 |
|
| tree | File | 1.13 KB | 0644 |
|
| truncate | File | 749 B | 0644 |
|
| tshark | File | 3.86 KB | 0644 |
|
| tsig-keygen | File | 625 B | 0644 |
|
| tune2fs | File | 1.63 KB | 0644 |
|
| typeset | File | 1.14 KB | 0644 |
|
| ua | File | 1.95 KB | 0644 |
|
| ubuntu-bug | File | 5.21 KB | 0644 |
|
| ubuntu-report | File | 10.26 KB | 0644 |
|
| uclampset | File | 665 B | 0644 |
|
| udevadm | File | 11.23 KB | 0644 |
|
| udisksctl | File | 857 B | 0644 |
|
| ufw | File | 2.44 KB | 0644 |
|
| ul | File | 655 B | 0644 |
|
| ulimit | File | 821 B | 0644 |
|
| umount | File | 1.82 KB | 0644 |
|
| unace | File | 498 B | 0644 |
|
| unpack200 | File | 1.35 KB | 0644 |
|
| unrar | File | 636 B | 0644 |
|
| unshare | File | 936 B | 0644 |
|
| unshunt | File | 357 B | 0644 |
|
| update-alternatives | File | 2.83 KB | 0644 |
|
| update-initramfs | File | 581 B | 0644 |
|
| update-rc.d | File | 1.91 KB | 0644 |
|
| upgradepkg | File | 759 B | 0644 |
|
| urlsnarf | File | 530 B | 0644 |
|
| useradd | File | 1.51 KB | 0644 |
|
| userdel | File | 619 B | 0644 |
|
| usermod | File | 1.6 KB | 0644 |
|
| uuidd | File | 862 B | 0644 |
|
| uuidgen | File | 753 B | 0644 |
|
| uuidparse | File | 727 B | 0644 |
|
| valgrind | File | 3.22 KB | 0644 |
|
| vgcfgbackup | File | 21.02 KB | 0644 |
|
| vgcfgrestore | File | 21.02 KB | 0644 |
|
| vgchange | File | 21.02 KB | 0644 |
|
| vgck | File | 21.02 KB | 0644 |
|
| vgconvert | File | 21.02 KB | 0644 |
|
| vgcreate | File | 21.02 KB | 0644 |
|
| vgdisplay | File | 21.02 KB | 0644 |
|
| vgexport | File | 21.02 KB | 0644 |
|
| vgextend | File | 21.02 KB | 0644 |
|
| vgimport | File | 21.02 KB | 0644 |
|
| vgmerge | File | 21.02 KB | 0644 |
|
| vgmknodes | File | 21.02 KB | 0644 |
|
| vgreduce | File | 21.02 KB | 0644 |
|
| vgremove | File | 21.02 KB | 0644 |
|
| vgrename | File | 21.02 KB | 0644 |
|
| vgs | File | 21.02 KB | 0644 |
|
| vgscan | File | 21.02 KB | 0644 |
|
| vgsplit | File | 21.02 KB | 0644 |
|
| vigr | File | 562 B | 0644 |
|
| vipw | File | 562 B | 0644 |
|
| vmstat | File | 729 B | 0644 |
|
| vncviewer | File | 3.02 KB | 0644 |
|
| vpnc | File | 2.1 KB | 0644 |
|
| wall | File | 634 B | 0644 |
|
| watch | File | 1.29 KB | 0644 |
|
| wdctl | File | 1.34 KB | 0644 |
|
| webmitm | File | 369 B | 0644 |
|
| wget | File | 6.63 KB | 0644 |
|
| whatis | File | 3.57 KB | 0644 |
|
| whereis | File | 531 B | 0644 |
|
| whiptail | File | 345 B | 0644 |
|
| wine | File | 696 B | 0644 |
|
| wine-development | File | 696 B | 0644 |
|
| wine-stable | File | 696 B | 0644 |
|
| wine64 | File | 696 B | 0644 |
|
| wine64-development | File | 696 B | 0644 |
|
| wine64-stable | File | 696 B | 0644 |
|
| wipefs | File | 1.3 KB | 0644 |
|
| withlist | File | 576 B | 0644 |
|
| wodim | File | 3.43 KB | 0644 |
|
| wol | File | 1.36 KB | 0644 |
|
| wsimport | File | 1.16 KB | 0644 |
|
| wtf | File | 1.08 KB | 0644 |
|
| wvdial | File | 1.27 KB | 0644 |
|
| xdg-mime | File | 2.44 KB | 0644 |
|
| xdg-settings | File | 723 B | 0644 |
|
| xev | File | 765 B | 0644 |
|
| xfreerdp | File | 2.25 KB | 0644 |
|
| xgamma | File | 1.97 KB | 0644 |
|
| xhost | File | 438 B | 0644 |
|
| xmllint | File | 1.3 KB | 0644 |
|
| xmlwf | File | 713 B | 0644 |
|
| xmms | File | 785 B | 0644 |
|
| xmodmap | File | 450 B | 0644 |
|
| xpovray | File | 2.33 KB | 0644 |
|
| xrandr | File | 5.08 KB | 0644 |
|
| xrdb | File | 535 B | 0644 |
|
| xsltproc | File | 1.25 KB | 0644 |
|
| xvfb-run | File | 1 KB | 0644 |
|
| xvnc4viewer | File | 3.02 KB | 0644 |
|
| xxd | File | 634 B | 0644 |
|
| xz | File | 1.6 KB | 0644 |
|
| xzdec | File | 741 B | 0644 |
|
| ypcat | File | 708 B | 0644 |
|
| ypmatch | File | 708 B | 0644 |
|
| yum-arch | File | 390 B | 0644 |
|
| zopfli | File | 694 B | 0644 |
|
| zopflipng | File | 1002 B | 0644 |
|
| zramctl | File | 1.26 KB | 0644 |
|