# tc(8) completion -*- shell-script -*- # Copyright 2016 6WIND S.A. # Copyright 2016 Quentin Monnet <quentin.monnet@6wind.com> QDISC_KIND=' choke codel bfifo pfifo pfifo_head_drop fq fq_codel gred hhf \ mqprio multiq netem pfifo_fast pie red rr sfb sfq tbf atm cbq drr \ dsmark hfsc htb prio qfq ' FILTER_KIND=' basic bpf cgroup flow flower fw route rsvp tcindex u32 matchall ' ACTION_KIND=' gact mirred bpf sample ' # 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. _tc_once_attr() { local w subcword found for w in $*; do found=0 for (( subcword=3; subcword < ${#words[@]}-1; subcword++ )); do if [[ $w == ${words[subcword]} ]]; then found=1 break fi done [[ $found -eq 0 ]] && \ COMPREPLY+=( $( compgen -W "$w" -- "$cur" ) ) done } # 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 from the provided index. Returns # no value. _tc_once_attr_from() { local w subcword found from=$1 shift for w in $*; do found=0 for (( subcword=$from; subcword < ${#words[@]}-1; subcword++ )); do if [[ $w == ${words[subcword]} ]]; then found=1 break fi done [[ $found -eq 0 ]] && \ COMPREPLY+=( $( compgen -W "$w" -- "$cur" ) ) done } # 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. _tc_one_of_list() { local w subcword for w in $*; do for (( subcword=3; subcword < ${#words[@]}-1; subcword++ )); do [[ $w == ${words[subcword]} ]] && return 1 done done COMPREPLY+=( $( compgen -W "$*" -- "$cur" ) ) } # Takes a list of words in argument; adds them all to COMPREPLY if none of them # is already present on the command line from the provided index. Returns no # value. _tc_one_of_list_from() { local w subcword from=$1 shift for w in $*; do for (( subcword=$from; subcword < ${#words[@]}-1; subcword++ )); do [[ $w == ${words[subcword]} ]] && return 1 done done COMPREPLY+=( $( compgen -W "$*" -- "$cur" ) ) } # Returns "$cur ${cur}arg1 ${cur}arg2 ..." _tc_expand_units() { [[ $cur =~ ^[0-9]+ ]] || return 1 local value=${cur%%[^0-9]*} [[ $cur == $value ]] && echo $cur echo ${@/#/$value} } # Complete based on given word, usually $prev (or possibly the word before), # for when an argument or an option name has but a few possible arguments (so # tc does not take particular commands into account here). # Returns 0 is completion should stop after running this function, 1 otherwise. _tc_direct_complete() { case $1 in # Command options dev) _available_interfaces return 0 ;; classid) return 0 ;; estimator) local list=$( _tc_expand_units 'secs' 'msecs' 'usecs' ) COMPREPLY+=( $( compgen -W "$list" -- "$cur" ) ) return 0 ;; handle) return 0 ;; parent|flowid) local i iface ids cmd for (( i=3; i < ${#words[@]}-2; i++ )); do [[ ${words[i]} == dev ]] && iface=${words[i+1]} break done for cmd in qdisc class; do if [[ -n $iface ]]; then ids+=$( tc $cmd show dev $iface 2>/dev/null | \ cut -d\ -f 3 )" " else ids+=$( tc $cmd show 2>/dev/null | cut -d\ -f 3 ) fi done [[ $ids != " " ]] && \ COMPREPLY+=( $( compgen -W "$ids" -- "$cur" ) ) return 0 ;; protocol) # list comes from lib/ll_proto.c COMPREPLY+=( $( compgen -W ' 802.1Q 802.1ad 802_2 802_3 LLDP aarp \ all aoe arp atalk atmfate atmmpoa ax25 bpq can control cust \ ddcmp dec diag dna_dl dna_rc dna_rt econet ieeepup ieeepupat \ ip ipv4 ipv6 ipx irda lat localtalk loop mobitex ppp_disc \ ppp_mp ppp_ses ppptalk pup pupat rarp sca snap tipc tr_802_2 \ wan_ppp x25' -- "$cur" ) ) return 0 ;; prio) return 0 ;; stab) COMPREPLY+=( $( compgen -W 'mtu tsize mpu overhead linklayer' -- "$cur" ) ) ;; # Qdiscs and classes options alpha|bands|beta|buckets|corrupt|debug|decrement|default|\ default_index|depth|direct_qlen|divisor|duplicate|ewma|flow_limit|\ flows|hh_limit|increment|indices|linklayer|non_hh_weight|num_tc|\ penalty_burst|penalty_rate|prio|priomap|probability|queues|r2q|\ reorder|vq|vqs) return 0 ;; setup) COMPREPLY+=( $( compgen -W 'vqs' -- "$cur" ) ) return 0 ;; hw) COMPREPLY+=( $( compgen -W '1 0' -- "$cur" ) ) return 0 ;; distribution) COMPREPLY+=( $( compgen -W 'uniform normal pareto paretonormal' -- "$cur" ) ) return 0 ;; loss) COMPREPLY+=( $( compgen -W 'random state gmodel' -- "$cur" ) ) return 0 ;; # Qdiscs and classes options options gap|gmodel|state) return 0 ;; # Filters options map) COMPREPLY+=( $( compgen -W 'key' -- "$cur" ) ) return 0 ;; hash) COMPREPLY+=( $( compgen -W 'keys' -- "$cur" ) ) return 0 ;; indev) _available_interfaces return 0 ;; eth_type) COMPREPLY+=( $( compgen -W 'ipv4 ipv6' -- "$cur" ) ) return 0 ;; ip_proto) COMPREPLY+=( $( compgen -W 'tcp udp' -- "$cur" ) ) return 0 ;; # Filters options options key|keys) [[ ${words[@]} =~ graft ]] && return 1 COMPREPLY+=( $( compgen -W 'src dst proto proto-src proto-dst iif \ priority mark nfct nfct-src nfct-dst nfct-proto-src \ nfct-proto-dst rt-classid sk-uid sk-gid vlan-tag rxhash' -- \ "$cur" ) ) return 0 ;; # BPF options - used for filters, actions, and exec export|bytecode|bytecode-file|object-file) _filedir return 0 ;; object-pinned|graft) # Pinned object is probably under /sys/fs/bpf/ [[ -n "$cur" ]] && _filedir && return 0 COMPREPLY=( $( compgen -G "/sys/fs/bpf/*" -- "$cur" ) ) || _filedir compopt -o nospace return 0 ;; section) if (type objdump > /dev/null 2>&1) ; then local fword objfile section_list for (( fword=3; fword < ${#words[@]}-3; fword++ )); do if [[ ${words[fword]} == object-file ]]; then objfile=${words[fword+1]} break fi done section_list=$( objdump -h $objfile 2>/dev/null | \ sed -n 's/^ *[0-9]\+ \([^ ]*\) *.*/\1/p' ) COMPREPLY+=( $( compgen -W "$section_list" -- "$cur" ) ) fi return 0 ;; import|run) _filedir return 0 ;; type) COMPREPLY+=( $( compgen -W 'cls act' -- "$cur" ) ) return 0 ;; # Actions options random) _tc_one_of_list 'netrand determ' return 0 ;; # Units for option arguments bandwidth|maxrate|peakrate|rate) local list=$( _tc_expand_units 'bit' \ 'kbit' 'kibit' 'kbps' 'kibps' \ 'mbit' 'mibit' 'mbps' 'mibps' \ 'gbit' 'gibit' 'gbps' 'gibps' \ 'tbit' 'tibit' 'tbps' 'tibps' ) COMPREPLY+=( $( compgen -W "$list" -- "$cur" ) ) ;; admit_bytes|avpkt|burst|cell|initial_quantum|limit|max|min|mtu|mpu|\ overhead|quantum|redflowlist) local list=$( _tc_expand_units \ 'b' 'kbit' 'k' 'mbit' 'm' 'gbit' 'g' ) COMPREPLY+=( $( compgen -W "$list" -- "$cur" ) ) ;; db|delay|evict_timeout|interval|latency|perturb|rehash|reset_timeout|\ target|tupdate) local list=$( _tc_expand_units 'secs' 'msecs' 'usecs' ) COMPREPLY+=( $( compgen -W "$list" -- "$cur" ) ) ;; esac return 1 } # Complete with options names for qdiscs. Each qdisc has its own set of options # and it seems we cannot really parse it from anywhere, so we add it manually # in this function. # Returns 0 is completion should stop after running this function, 1 otherwise. _tc_qdisc_options() { case $1 in choke) _tc_once_attr 'limit bandwidth ecn min max burst' return 0 ;; codel) _tc_once_attr 'limit target interval' _tc_one_of_list 'ecn noecn' return 0 ;; bfifo|pfifo|pfifo_head_drop) _tc_once_attr 'limit' return 0 ;; fq) _tc_once_attr 'limit flow_limit quantum initial_quantum maxrate \ buckets' _tc_one_of_list 'pacing nopacing' return 0 ;; fq_codel) _tc_once_attr 'limit flows target interval quantum' _tc_one_of_list 'ecn noecn' return 0 ;; gred) _tc_once_attr 'setup vqs default grio vq prio limit min max avpkt \ burst probability bandwidth' return 0 ;; hhf) _tc_once_attr 'limit quantum hh_limit reset_timeout admit_bytes \ evict_timeout non_hh_weight' return 0 ;; mqprio) _tc_once_attr 'num_tc map queues hw' return 0 ;; netem) _tc_once_attr 'delay distribution corrupt duplicate loss ecn \ reorder rate' return 0 ;; pie) _tc_once_attr 'limit target tupdate alpha beta' _tc_one_of_list 'bytemode nobytemode' _tc_one_of_list 'ecn noecn' return 0 ;; red) _tc_once_attr 'limit min max avpkt burst adaptive probability \ bandwidth ecn harddrop' return 0 ;; rr|prio) _tc_once_attr 'bands priomap multiqueue' return 0 ;; sfb) _tc_once_attr 'rehash db limit max target increment decrement \ penalty_rate penalty_burst' return 0 ;; sfq) _tc_once_attr 'limit perturb quantum divisor flows depth headdrop \ redflowlimit min max avpkt burst probability ecn harddrop' return 0 ;; tbf) _tc_once_attr 'limit burst rate mtu peakrate latency overhead \ linklayer' return 0 ;; cbq) _tc_once_attr 'bandwidth avpkt mpu cell ewma' return 0 ;; dsmark) _tc_once_attr 'indices default_index set_tc_index' return 0 ;; hfsc) _tc_once_attr 'default' return 0 ;; htb) _tc_once_attr 'default r2q direct_qlen debug' return 0 ;; multiq|pfifo_fast|atm|drr|qfq) return 0 ;; esac return 1 } # Complete with options names for BPF filters or actions. # Returns 0 is completion should stop after running this function, 1 otherwise. _tc_bpf_options() { [[ ${words[${#words[@]}-3]} == object-file ]] && \ _tc_once_attr 'section export' [[ ${words[${#words[@]}-5]} == object-file ]] && \ [[ ${words[${#words[@]}-3]} =~ (section|export) ]] && \ _tc_once_attr 'section export' _tc_one_of_list 'bytecode bytecode-file object-file object-pinned' _tc_once_attr 'verbose index direct-action action classid' return 0 } # Complete with options names for filter actions. # This function is recursive, thus allowing multiple actions statement to be # parsed. # Returns 0 is completion should stop after running this function, 1 otherwise. _tc_filter_action_options() { for ((acwd=$1; acwd < ${#words[@]}-1; acwd++)); do if [[ action == ${words[acwd]} ]]; then _tc_filter_action_options $((acwd+1)) && return 0 fi done local action acwd for ((acwd=$1; acwd < ${#words[@]}-1; acwd++)); do if [[ $ACTION_KIND =~ ' '${words[acwd]}' ' ]]; then _tc_one_of_list_from $acwd action _tc_action_options $acwd && return 0 fi done _tc_one_of_list_from $acwd $ACTION_KIND return 0 } # Complete with options names for filters. # Returns 0 is completion should stop after running this function, 1 otherwise. _tc_filter_options() { for ((acwd=$1; acwd < ${#words[@]}-1; acwd++)); do if [[ action == ${words[acwd]} ]]; then _tc_filter_action_options $((acwd+1)) && return 0 fi done filter=${words[$1]} case $filter in basic) _tc_once_attr 'match action classid' return 0 ;; bpf) _tc_bpf_options return 0 ;; cgroup) _tc_once_attr 'match action' return 0 ;; flow) local i for (( i=5; i < ${#words[@]}-1; i++ )); do if [[ ${words[i]} =~ ^keys?$ ]]; then _tc_direct_complete 'key' COMPREPLY+=( $( compgen -W 'or and xor rshift addend' -- \ "$cur" ) ) break fi done _tc_once_attr 'map hash divisor baseclass match action' return 0 ;; matchall) _tc_once_attr 'action classid skip_sw skip_hw' return 0 ;; flower) _tc_once_attr 'action classid indev dst_mac src_mac eth_type \ ip_proto dst_ip src_ip dst_port src_port' return 0 ;; fw) _tc_once_attr 'action classid' return 0 ;; route) _tc_one_of_list 'from fromif' _tc_once_attr 'to classid action' return 0 ;; rsvp) _tc_once_attr 'ipproto session sender classid action tunnelid \ tunnel flowlabel spi/ah spi/esp u8 u16 u32' [[ ${words[${#words[@]}-3]} == tunnel ]] && \ COMPREPLY+=( $( compgen -W 'skip' -- "$cur" ) ) [[ ${words[${#words[@]}-3]} =~ u(8|16|32) ]] && \ COMPREPLY+=( $( compgen -W 'mask' -- "$cur" ) ) [[ ${words[${#words[@]}-3]} == mask ]] && \ COMPREPLY+=( $( compgen -W 'at' -- "$cur" ) ) return 0 ;; tcindex) _tc_once_attr 'hash mask shift classid action' _tc_one_of_list 'pass_on fall_through' return 0 ;; u32) _tc_once_attr 'match link classid action offset ht hashkey sample' COMPREPLY+=( $( compgen -W 'ip ip6 udp tcp icmp u8 u16 u32 mark \ divisor' -- "$cur" ) ) return 0 ;; esac return 1 } # Complete with options names for actions. # Returns 0 is completion should stop after running this function, 1 otherwise. _tc_action_options() { local from=$1 local action=${words[from]} case $action in bpf) _tc_bpf_options return 0 ;; mirred) _tc_one_of_list_from $from 'ingress egress' _tc_one_of_list_from $from 'mirror redirect' _tc_once_attr_from $from 'index dev' return 0 ;; sample) _tc_once_attr_from $from 'rate' _tc_once_attr_from $from 'trunc' _tc_once_attr_from $from 'group' return 0 ;; gact) _tc_one_of_list_from $from 'reclassify drop continue pass' _tc_once_attr_from $from 'random' return 0 ;; esac return 1 } # Complete with options names for exec. # Returns 0 is completion should stop after running this function, 1 otherwise. _tc_exec_options() { case $1 in import) [[ ${words[${#words[@]}-3]} == import ]] && \ _tc_once_attr 'run' return 0 ;; graft) COMPREPLY+=( $( compgen -W 'key type' -- "$cur" ) ) [[ ${words[${#words[@]}-3]} == object-file ]] && \ _tc_once_attr 'type' _tc_bpf_options return 0 ;; esac return 1 } # Main completion function # Logic is as follows: # 1. Check if previous word is a global option; if so, propose arguments. # 2. Check if current word is a global option; if so, propose completion. # 3. Check for the presence of a main command (qdisc|class|filter|...). If # there is one, first call _tc_direct_complete to see if previous word is # waiting for a particular completion. If so, propose completion and exit. # 4. Extract main command and -- if available -- its subcommand # (add|delete|show|...). # 5. Propose completion based on main and sub- command in use. Additional # functions may be called for qdiscs, classes or filter options. _tc() { local cur prev words cword _init_completion || return case $prev in -V|-Version) return 0 ;; -b|-batch|-cf|-conf) _filedir return 0 ;; -force) COMPREPLY=( $( compgen -W '-batch' -- "$cur" ) ) return 0 ;; -nm|name) [[ -r /etc/iproute2/tc_cls ]] || \ COMPREPLY=( $( compgen -W '-conf' -- "$cur" ) ) return 0 ;; -n|-net|-netns) local nslist=$( ip netns list 2>/dev/null ) COMPREPLY+=( $( compgen -W "$nslist" -- "$cur" ) ) return 0 ;; -tshort) _tc_once_attr '-statistics' COMPREPLY+=( $( compgen -W 'monitor' -- "$cur" ) ) return 0 ;; -timestamp) _tc_once_attr '-statistics -tshort' COMPREPLY+=( $( compgen -W 'monitor' -- "$cur" ) ) return 0 ;; esac # Search for main commands local subcword cmd subcmd for (( subcword=1; subcword < ${#words[@]}-1; subcword++ )); do [[ ${words[subcword]} == -b?(atch) ]] && return 0 [[ -n $cmd ]] && subcmd=${words[subcword]} && break [[ ${words[subcword]} != -* && \ ${words[subcword-1]} != -@(n?(et?(ns))|c?(on)f) ]] && \ cmd=${words[subcword]} done if [[ -z $cmd ]]; then case $cur in -*) local c='-Version -statistics -details -raw -pretty \ -iec -graphe -batch -name -netns -timestamp' [[ $cword -eq 1 ]] && c+=' -force' COMPREPLY=( $( compgen -W "$c" -- "$cur" ) ) return 0 ;; *) COMPREPLY=( $( compgen -W "help $( tc help 2>&1 | \ command sed \ -e '/OBJECT := /!d' \ -e 's/.*{//' \ -e 's/}.*//' \ -e \ 's/|//g' )" -- "$cur" ) ) return 0 ;; esac fi [[ $subcmd == help ]] && return 0 # For this set of commands we may create COMPREPLY just by analysing the # previous word, if it expects for a specific list of options or values. if [[ $cmd =~ (qdisc|class|filter|action|exec) ]]; then _tc_direct_complete $prev && return 0 if [[ ${words[${#words[@]}-3]} == estimator ]]; then local list=$( _tc_expand_units 'secs' 'msecs' 'usecs' ) COMPREPLY+=( $( compgen -W "$list" -- "$cur" ) ) && return 0 fi fi # Completion depends on main command and subcommand in use. case $cmd in qdisc) case $subcmd in add|change|replace|link|del|delete) if [[ $(($cword-$subcword)) -eq 1 ]]; then COMPREPLY=( $( compgen -W 'dev' -- "$cur" ) ) return 0 fi local qdisc qdwd for ((qdwd=$subcword; qdwd < ${#words[@]}-1; qdwd++)); do if [[ $QDISC_KIND =~ ' '${words[qdwd]}' ' ]]; then qdisc=${words[qdwd]} _tc_qdisc_options $qdisc && return 0 fi done _tc_one_of_list $QDISC_KIND _tc_one_of_list 'root ingress parent clsact' _tc_once_attr 'handle estimator stab' ;; show) _tc_once_attr 'dev' _tc_one_of_list 'ingress clsact' _tc_once_attr '-statistics -details -raw -pretty -iec \ -graph -name' ;; help) return 0 ;; *) [[ $cword -eq $subcword ]] && \ COMPREPLY=( $( compgen -W 'help add delete change \ replace link show' -- "$cur" ) ) ;; esac ;; class) case $subcmd in add|change|replace|del|delete) if [[ $(($cword-$subcword)) -eq 1 ]]; then COMPREPLY=( $( compgen -W 'dev' -- "$cur" ) ) return 0 fi local qdisc qdwd for ((qdwd=$subcword; qdwd < ${#words[@]}-1; qdwd++)); do if [[ $QDISC_KIND =~ ' '${words[qdwd]}' ' ]]; then qdisc=${words[qdwd]} _tc_qdisc_options $qdisc && return 0 fi done _tc_one_of_list $QDISC_KIND _tc_one_of_list 'root parent' _tc_once_attr 'classid' ;; show) _tc_once_attr 'dev' _tc_one_of_list 'root parent' _tc_once_attr '-statistics -details -raw -pretty -iec \ -graph -name' ;; help) return 0 ;; *) [[ $cword -eq $subcword ]] && \ COMPREPLY=( $( compgen -W 'help add delete change \ replace show' -- "$cur" ) ) ;; esac ;; filter) case $subcmd in add|change|replace|del|delete) if [[ $(($cword-$subcword)) -eq 1 ]]; then COMPREPLY=( $( compgen -W 'dev' -- "$cur" ) ) return 0 fi local filter fltwd for ((fltwd=$subcword; fltwd < ${#words[@]}-1; fltwd++)); do if [[ $FILTER_KIND =~ ' '${words[fltwd]}' ' ]]; then _tc_filter_options $fltwd && return 0 fi done _tc_one_of_list $FILTER_KIND _tc_one_of_list 'root ingress egress parent' _tc_once_attr 'handle estimator pref protocol' ;; show) _tc_once_attr 'dev' _tc_one_of_list 'root ingress egress parent' _tc_once_attr '-statistics -details -raw -pretty -iec \ -graph -name' ;; help) return 0 ;; *) [[ $cword -eq $subcword ]] && \ COMPREPLY=( $( compgen -W 'help add delete change \ replace show' -- "$cur" ) ) ;; esac ;; action) case $subcmd in add|change|replace) local action acwd for ((acwd=$subcword; acwd < ${#words[@]}-1; acwd++)); do if [[ $ACTION_KIND =~ ' '${words[acwd]}' ' ]]; then _tc_action_options $acwd && return 0 fi done _tc_one_of_list $ACTION_KIND ;; get|del|delete) _tc_once_attr 'index' ;; lst|list|flush|show) _tc_one_of_list $ACTION_KIND ;; *) [[ $cword -eq $subcword ]] && \ COMPREPLY=( $( compgen -W 'help add delete change \ replace show list flush action' -- "$cur" ) ) ;; esac ;; monitor) COMPREPLY=( $( compgen -W 'help' -- "$cur" ) ) ;; exec) case $subcmd in bpf) local excmd exwd EXEC_KIND=' import debug graft ' for ((exwd=$subcword; exwd < ${#words[@]}-1; exwd++)); do if [[ $EXEC_KIND =~ ' '${words[exwd]}' ' ]]; then excmd=${words[exwd]} _tc_exec_options $excmd && return 0 fi done _tc_one_of_list $EXEC_KIND ;; *) [[ $cword -eq $subcword ]] && \ COMPREPLY=( $( compgen -W 'bpf' -- "$cur" ) ) ;; esac ;; esac } && complete -F _tc tc # ex: ts=4 sw=4 et filetype=sh
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
2to3 | File | 918 B | 0644 |
|
7z | File | 3.8 KB | 0644 |
|
7za | File | 3.8 KB | 0644 |
|
_cal | File | 886 B | 0644 |
|
_chfn | File | 238 B | 0644 |
|
_chsh | File | 646 B | 0644 |
|
_dmesg | File | 940 B | 0644 |
|
_eject | File | 799 B | 0644 |
|
_hexdump | File | 702 B | 0644 |
|
_hwclock | File | 609 B | 0644 |
|
_ionice | File | 1.24 KB | 0644 |
|
_look | File | 449 B | 0644 |
|
_mock | File | 2.03 KB | 0644 |
|
_modules | File | 2.49 KB | 0644 |
|
_newgrp | File | 432 B | 0644 |
|
_nmcli | File | 6.14 KB | 0644 |
|
_renice | File | 772 B | 0644 |
|
_repomanage | File | 610 B | 0644 |
|
_reptyr | File | 551 B | 0644 |
|
_rfkill | File | 937 B | 0644 |
|
_rtcwake | File | 873 B | 0644 |
|
_runuser | File | 241 B | 0644 |
|
_su | File | 989 B | 0644 |
|
_svn | File | 8.71 KB | 0644 |
|
_svnadmin | File | 2.28 KB | 0644 |
|
_svnlook | File | 1.95 KB | 0644 |
|
_udevadm | File | 2.13 KB | 0644 |
|
_write | File | 239 B | 0644 |
|
_yum | File | 4.42 KB | 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 | 898 B | 0644 |
|
abook | File | 1.19 KB | 0644 |
|
aclocal | File | 850 B | 0644 |
|
aclocal-1.10 | File | 850 B | 0644 |
|
aclocal-1.11 | File | 850 B | 0644 |
|
aclocal-1.12 | File | 850 B | 0644 |
|
aclocal-1.13 | File | 850 B | 0644 |
|
aclocal-1.14 | File | 850 B | 0644 |
|
aclocal-1.15 | File | 850 B | 0644 |
|
acpi | File | 446 B | 0644 |
|
add_members | File | 765 B | 0644 |
|
addpart | File | 447 B | 0644 |
|
alias | File | 494 B | 0644 |
|
alpine | File | 881 B | 0644 |
|
alternatives | File | 2.47 KB | 0644 |
|
animate | File | 8.9 KB | 0644 |
|
ant | File | 2.52 KB | 0644 |
|
apache2ctl | File | 382 B | 0644 |
|
appdata-validate | File | 796 B | 0644 |
|
apropos | File | 2.66 KB | 0644 |
|
apt | File | 6.87 KB | 0644 |
|
apt-build | File | 1.43 KB | 0644 |
|
apt-cache | File | 1.97 KB | 0644 |
|
apt-get | File | 3.05 KB | 0644 |
|
aptitude | File | 3.01 KB | 0644 |
|
aptitude-curses | File | 3.01 KB | 0644 |
|
arch | File | 1.06 KB | 0644 |
|
arm-koji | File | 6.22 KB | 0644 |
|
arping | File | 599 B | 0644 |
|
arpspoof | File | 568 B | 0644 |
|
asciidoc | File | 1.14 KB | 0644 |
|
asciidoc.py | File | 1.14 KB | 0644 |
|
aspell | File | 3.31 KB | 0644 |
|
autoconf | File | 953 B | 0644 |
|
autoheader | File | 1015 B | 0644 |
|
automake | File | 874 B | 0644 |
|
automake-1.10 | File | 874 B | 0644 |
|
automake-1.11 | File | 874 B | 0644 |
|
automake-1.12 | File | 874 B | 0644 |
|
automake-1.13 | File | 874 B | 0644 |
|
automake-1.14 | File | 874 B | 0644 |
|
automake-1.15 | File | 874 B | 0644 |
|
autoreconf | File | 1015 B | 0644 |
|
autorpm | File | 350 B | 0644 |
|
autoscan | File | 733 B | 0644 |
|
autossh | File | 12 KB | 0644 |
|
autoupdate | File | 733 B | 0644 |
|
avctrl | File | 475 B | 0644 |
|
badblocks | File | 714 B | 0644 |
|
bind | File | 856 B | 0644 |
|
bk | File | 433 B | 0644 |
|
blkdiscard | File | 639 B | 0644 |
|
blkid | File | 2.04 KB | 0644 |
|
blockdev | File | 726 B | 0644 |
|
bootctl | File | 1.93 KB | 0644 |
|
brctl | File | 1.02 KB | 0644 |
|
btdownloadcurses.py | File | 1.04 KB | 0644 |
|
btdownloadgui.py | File | 1.04 KB | 0644 |
|
btdownloadheadless.py | File | 1.04 KB | 0644 |
|
btrfs | File | 3.5 KB | 0644 |
|
busctl | File | 7.63 KB | 0644 |
|
bzip2 | File | 1.06 KB | 0644 |
|
c++ | File | 2.15 KB | 0644 |
|
cancel | File | 293 B | 0644 |
|
cardctl | File | 382 B | 0644 |
|
cc | File | 2.15 KB | 0644 |
|
ccache | File | 1015 B | 0644 |
|
ccze | File | 1.13 KB | 0644 |
|
cdrecord | File | 3.54 KB | 0644 |
|
cfagent | File | 423 B | 0644 |
|
cfrun | File | 1.26 KB | 0644 |
|
chage | File | 580 B | 0644 |
|
change_pw | File | 531 B | 0644 |
|
chcpu | File | 1.47 KB | 0644 |
|
check_db | File | 376 B | 0644 |
|
check_perms | File | 321 B | 0644 |
|
checksec | File | 742 B | 0644 |
|
chgrp | File | 951 B | 0644 |
|
chkconfig | File | 909 B | 0644 |
|
chmem | File | 501 B | 0644 |
|
chown | File | 1.09 KB | 0644 |
|
chpasswd | File | 601 B | 0644 |
|
chronyc | File | 1.54 KB | 0644 |
|
chrpath | File | 522 B | 0644 |
|
chrt | File | 920 B | 0644 |
|
ci | File | 893 B | 0644 |
|
ciptool | File | 9.53 KB | 0644 |
|
civclient | File | 705 B | 0644 |
|
civserver | File | 477 B | 0644 |
|
cksfv | File | 521 B | 0644 |
|
cleanarch | File | 354 B | 0644 |
|
clisp | File | 670 B | 0644 |
|
clone_member | File | 542 B | 0644 |
|
cloud-init | File | 3.39 KB | 0644 |
|
clzip | File | 1.12 KB | 0644 |
|
co | File | 893 B | 0644 |
|
colormake | File | 6.04 KB | 0644 |
|
compare | File | 8.9 KB | 0644 |
|
compgen | File | 1.44 KB | 0644 |
|
complete | File | 1.44 KB | 0644 |
|
composite | File | 8.9 KB | 0644 |
|
config_list | File | 582 B | 0644 |
|
configure | File | 1.16 KB | 0644 |
|
conjure | File | 8.9 KB | 0644 |
|
convert | File | 8.9 KB | 0644 |
|
cowsay | File | 549 B | 0644 |
|
cowthink | File | 549 B | 0644 |
|
cpan2dist | File | 1.2 KB | 0644 |
|
cpio | File | 2.85 KB | 0644 |
|
cppcheck | File | 2.55 KB | 0644 |
|
createdb | File | 4.52 KB | 0644 |
|
createuser | File | 4.52 KB | 0644 |
|
crontab | File | 1.16 KB | 0644 |
|
cryptdisks | File | 408 B | 0644 |
|
cryptsetup | File | 2.59 KB | 0644 |
|
ctrlaltdel | File | 335 B | 0644 |
|
curl | File | 2.91 KB | 0644 |
|
cvs | File | 11.58 KB | 0644 |
|
cvsps | File | 1.47 KB | 0644 |
|
dcop | File | 383 B | 0644 |
|
dd | File | 1.27 KB | 0644 |
|
debconf | File | 294 B | 0644 |
|
debconf-show | File | 294 B | 0644 |
|
declare | File | 1.27 KB | 0644 |
|
deja-dup | File | 699 B | 0644 |
|
delpart | File | 526 B | 0644 |
|
desktop-file-validate | File | 476 B | 0644 |
|
dfutool | File | 9.53 KB | 0644 |
|
dhclient | File | 594 B | 0644 |
|
dict | File | 1.83 KB | 0644 |
|
display | File | 8.9 KB | 0644 |
|
dmesg | File | 1.15 KB | 0644 |
|
dnsspoof | File | 504 B | 0644 |
|
docker | File | 114.05 KB | 0644 |
|
dot | File | 1.26 KB | 0644 |
|
dpkg | File | 4.02 KB | 0644 |
|
dpkg-deb | File | 4.02 KB | 0644 |
|
dpkg-query | File | 4.02 KB | 0644 |
|
dpkg-reconfigure | File | 4.02 KB | 0644 |
|
dpkg-source | File | 3.26 KB | 0644 |
|
dropdb | File | 4.52 KB | 0644 |
|
dropuser | File | 4.52 KB | 0644 |
|
dselect | File | 666 B | 0644 |
|
dsniff | File | 516 B | 0644 |
|
dumpdb | File | 373 B | 0644 |
|
dumpe2fs | File | 520 B | 0644 |
|
e2freefrag | File | 462 B | 0644 |
|
e2label | File | 292 B | 0644 |
|
ebtables | File | 3.63 KB | 0644 |
|
edquota | File | 3.62 KB | 0644 |
|
eog | File | 652 B | 0644 |
|
ether-wake | File | 531 B | 0644 |
|
evince | File | 952 B | 0644 |
|
explodepkg | File | 152 B | 0644 |
|
export | File | 1.59 KB | 0644 |
|
f77 | File | 2.15 KB | 0644 |
|
f95 | File | 2.15 KB | 0644 |
|
faillog | File | 629 B | 0644 |
|
fallocate | File | 721 B | 0644 |
|
fbgs | File | 1.54 KB | 0644 |
|
fbi | File | 1.79 KB | 0644 |
|
fdformat | File | 566 B | 0644 |
|
feh | File | 4.05 KB | 0644 |
|
file | File | 734 B | 0644 |
|
file-roller | File | 1.07 KB | 0644 |
|
filebucket | File | 9.56 KB | 0644 |
|
filefrag | File | 354 B | 0644 |
|
filesnarf | File | 451 B | 0644 |
|
find | File | 3.81 KB | 0644 |
|
find_member | File | 537 B | 0644 |
|
findfs | File | 695 B | 0644 |
|
findmnt | File | 3.08 KB | 0644 |
|
flake8 | File | 985 B | 0644 |
|
flock | File | 874 B | 0644 |
|
freebsd-update | File | 587 B | 0644 |
|
freeciv-gtk2 | File | 705 B | 0644 |
|
freeciv-sdl | File | 705 B | 0644 |
|
freeciv-server | File | 477 B | 0644 |
|
freeciv-xaw | File | 705 B | 0644 |
|
fsck | File | 787 B | 0644 |
|
fsck.cramfs | File | 684 B | 0644 |
|
fsck.minix | File | 383 B | 0644 |
|
fsfreeze | File | 524 B | 0644 |
|
fstrim | File | 677 B | 0644 |
|
function | File | 1.27 KB | 0644 |
|
fusermount | File | 649 B | 0644 |
|
g++ | File | 2.15 KB | 0644 |
|
g4 | File | 1.45 KB | 0644 |
|
g77 | File | 2.15 KB | 0644 |
|
g95 | File | 2.15 KB | 0644 |
|
gapplication | File | 1.36 KB | 0644 |
|
gcc | File | 2.15 KB | 0644 |
|
gcj | File | 2.15 KB | 0644 |
|
gcl | File | 617 B | 0644 |
|
gdb | File | 1.61 KB | 0644 |
|
gdbus | File | 935 B | 0644 |
|
genaliases | File | 324 B | 0644 |
|
gendiff | File | 267 B | 0644 |
|
genisoimage | File | 869 B | 0644 |
|
geoiplookup | File | 681 B | 0644 |
|
geoiplookup6 | File | 681 B | 0644 |
|
getconf | File | 789 B | 0644 |
|
getent | File | 1.95 KB | 0644 |
|
getopt | File | 815 B | 0644 |
|
gfortran | File | 2.15 KB | 0644 |
|
git | File | 67.21 KB | 0644 |
|
gitk | File | 67.21 KB | 0644 |
|
gkrellm | File | 919 B | 0644 |
|
gkrellm2 | File | 919 B | 0644 |
|
gm | File | 858 B | 0644 |
|
gmake | File | 6.04 KB | 0644 |
|
gmplayer | File | 11.06 KB | 0644 |
|
gnatmake | File | 1017 B | 0644 |
|
gnokii | File | 6.81 KB | 0644 |
|
gnome-mplayer | File | 962 B | 0644 |
|
gnumake | File | 6.04 KB | 0644 |
|
gpasswd | File | 605 B | 0644 |
|
gpc | File | 2.15 KB | 0644 |
|
gpg | File | 1.25 KB | 0644 |
|
gpg2 | File | 1.31 KB | 0644 |
|
gphoto2 | File | 1.37 KB | 0644 |
|
gprof | File | 1.85 KB | 0644 |
|
gresource | File | 1.32 KB | 0644 |
|
groupadd | File | 611 B | 0644 |
|
groupdel | File | 542 B | 0644 |
|
groupmems | File | 611 B | 0644 |
|
groupmod | File | 686 B | 0644 |
|
growisofs | File | 896 B | 0644 |
|
grpck | File | 345 B | 0644 |
|
gsettings | File | 2.76 KB | 0644 |
|
gzip | File | 1.16 KB | 0644 |
|
hciattach | File | 9.53 KB | 0644 |
|
hciconfig | File | 9.53 KB | 0644 |
|
hcitool | File | 9.53 KB | 0644 |
|
hd | File | 702 B | 0644 |
|
hddtemp | File | 866 B | 0644 |
|
hid2hci | File | 350 B | 0644 |
|
host | File | 1.97 KB | 0644 |
|
hostname | File | 479 B | 0644 |
|
hostnamectl | File | 2.22 KB | 0644 |
|
hping | File | 772 B | 0644 |
|
hping2 | File | 772 B | 0644 |
|
hping3 | File | 772 B | 0644 |
|
htop | File | 797 B | 0644 |
|
htpasswd | File | 920 B | 0644 |
|
hwclock | File | 938 B | 0644 |
|
iconv | File | 847 B | 0644 |
|
id | File | 441 B | 0644 |
|
identify | File | 8.9 KB | 0644 |
|
idn | File | 653 B | 0644 |
|
ifdown | File | 387 B | 0644 |
|
ifstatus | File | 387 B | 0644 |
|
iftop | File | 508 B | 0644 |
|
ifup | File | 387 B | 0644 |
|
import | File | 8.9 KB | 0644 |
|
info | File | 1.88 KB | 0644 |
|
inject | File | 510 B | 0644 |
|
insmod | File | 521 B | 0644 |
|
insmod.static | File | 521 B | 0644 |
|
installpkg | File | 737 B | 0644 |
|
interdiff | File | 762 B | 0644 |
|
invoke-rc.d | File | 1.2 KB | 0644 |
|
ionice | File | 1.13 KB | 0644 |
|
ip | File | 10.34 KB | 0644 |
|
ipcmk | File | 576 B | 0644 |
|
ipcrm | File | 1.39 KB | 0644 |
|
ipcs | File | 514 B | 0644 |
|
iperf | File | 1.69 KB | 0644 |
|
ipmitool | File | 5.73 KB | 0644 |
|
ipsec | File | 3.15 KB | 0644 |
|
iptables | File | 1.96 KB | 0644 |
|
ipv6calc | File | 1.35 KB | 0644 |
|
iscsiadm | File | 1.86 KB | 0644 |
|
isosize | File | 529 B | 0644 |
|
isql | File | 354 B | 0644 |
|
iwconfig | File | 2.77 KB | 0644 |
|
iwlist | File | 617 B | 0644 |
|
iwpriv | File | 743 B | 0644 |
|
iwspy | File | 488 B | 0644 |
|
jar | File | 501 B | 0644 |
|
jarsigner | File | 1.62 KB | 0644 |
|
java | File | 8.41 KB | 0644 |
|
javac | File | 8.41 KB | 0644 |
|
javadoc | File | 8.41 KB | 0644 |
|
javaws | File | 774 B | 0644 |
|
journalctl | File | 5.74 KB | 0644 |
|
jpegoptim | File | 865 B | 0644 |
|
jps | File | 597 B | 0644 |
|
jshint | File | 894 B | 0644 |
|
k3b | File | 1.13 KB | 0644 |
|
kcov | File | 1.73 KB | 0644 |
|
kernel-install | File | 1.79 KB | 0644 |
|
kill | File | 579 B | 0644 |
|
killall | File | 762 B | 0644 |
|
kldload | File | 477 B | 0644 |
|
kldunload | File | 374 B | 0644 |
|
kmod | File | 3.16 KB | 0644 |
|
koji | File | 6.22 KB | 0644 |
|
kplayer | File | 11.06 KB | 0644 |
|
ktutil | File | 2.94 KB | 0644 |
|
l2ping | File | 9.53 KB | 0644 |
|
larch | File | 1.94 KB | 0644 |
|
last | File | 949 B | 0644 |
|
lastlog | File | 566 B | 0644 |
|
lbzip2 | File | 1.06 KB | 0644 |
|
ldapadd | File | 4.39 KB | 0644 |
|
ldapcompare | File | 4.39 KB | 0644 |
|
ldapdelete | File | 4.39 KB | 0644 |
|
ldapmodify | File | 4.39 KB | 0644 |
|
ldapmodrdn | File | 4.39 KB | 0644 |
|
ldappasswd | File | 4.39 KB | 0644 |
|
ldapsearch | File | 4.39 KB | 0644 |
|
ldapvi | File | 1.36 KB | 0644 |
|
ldapwhoami | File | 4.39 KB | 0644 |
|
ldattach | File | 1.44 KB | 0644 |
|
lftp | File | 689 B | 0644 |
|
lftpget | File | 309 B | 0644 |
|
lilo | File | 1.17 KB | 0644 |
|
links | File | 989 B | 0644 |
|
lintian | File | 5.14 KB | 0644 |
|
lintian-info | File | 5.14 KB | 0644 |
|
lisp | File | 635 B | 0644 |
|
list_admins | File | 387 B | 0644 |
|
list_lists | File | 471 B | 0644 |
|
list_members | File | 858 B | 0644 |
|
list_owners | File | 413 B | 0644 |
|
localectl | File | 3.65 KB | 0644 |
|
logger | File | 1.52 KB | 0644 |
|
loginctl | File | 4.15 KB | 0644 |
|
losetup | File | 1.68 KB | 0644 |
|
lpq | File | 602 B | 0644 |
|
lpr | File | 914 B | 0644 |
|
lrzip | File | 1.11 KB | 0644 |
|
lsblk | File | 1.92 KB | 0644 |
|
lscpu | File | 1018 B | 0644 |
|
lsipc | File | 1.28 KB | 0644 |
|
lslocks | File | 1.04 KB | 0644 |
|
lslogins | File | 1.66 KB | 0644 |
|
lsmem | File | 1.03 KB | 0644 |
|
lsns | File | 1.14 KB | 0644 |
|
lsof | File | 1.36 KB | 0644 |
|
lsscsi | File | 576 B | 0644 |
|
lsusb | File | 413 B | 0644 |
|
lua | File | 434 B | 0644 |
|
luac | File | 486 B | 0644 |
|
luseradd | File | 999 B | 0644 |
|
luserdel | File | 474 B | 0644 |
|
lusermod | File | 999 B | 0644 |
|
lvchange | File | 19.51 KB | 0644 |
|
lvcreate | File | 19.51 KB | 0644 |
|
lvdisplay | File | 19.51 KB | 0644 |
|
lvextend | File | 19.51 KB | 0644 |
|
lvm | File | 19.51 KB | 0644 |
|
lvmdiskscan | File | 19.51 KB | 0644 |
|
lvreduce | File | 19.51 KB | 0644 |
|
lvremove | File | 19.51 KB | 0644 |
|
lvrename | File | 19.51 KB | 0644 |
|
lvresize | File | 19.51 KB | 0644 |
|
lvs | File | 19.51 KB | 0644 |
|
lvscan | File | 19.51 KB | 0644 |
|
lxc | File | 10.23 KB | 0644 |
|
lz4 | File | 1.19 KB | 0644 |
|
lz4c | File | 1.19 KB | 0644 |
|
lzip | File | 1.12 KB | 0644 |
|
lzma | File | 1.01 KB | 0644 |
|
lzop | File | 1.46 KB | 0644 |
|
macof | File | 429 B | 0644 |
|
mailmanctl | File | 469 B | 0644 |
|
mailsnarf | File | 451 B | 0644 |
|
make | File | 6.04 KB | 0644 |
|
makepkg | File | 534 B | 0644 |
|
man | File | 2.66 KB | 0644 |
|
mc | File | 842 B | 0644 |
|
mcookie | File | 599 B | 0644 |
|
mcrypt | File | 1.81 KB | 0644 |
|
mdadm | File | 4.39 KB | 0644 |
|
mdecrypt | File | 1.81 KB | 0644 |
|
mdtool | File | 2.08 KB | 0644 |
|
medusa | File | 685 B | 0644 |
|
mencoder | File | 11.06 KB | 0644 |
|
mesg | File | 412 B | 0644 |
|
micropython | File | 1.64 KB | 0644 |
|
mii-diag | File | 657 B | 0644 |
|
mii-tool | File | 847 B | 0644 |
|
minicom | File | 1005 B | 0644 |
|
mkfs | File | 638 B | 0644 |
|
mkfs.bfs | File | 656 B | 0644 |
|
mkfs.cramfs | File | 821 B | 0644 |
|
mkfs.minix | File | 714 B | 0644 |
|
mkinitrd | File | 1.19 KB | 0644 |
|
mkisofs | File | 869 B | 0644 |
|
mkswap | File | 841 B | 0644 |
|
mktemp | File | 669 B | 0644 |
|
mmcli | File | 5.26 KB | 0644 |
|
mmsitepass | File | 330 B | 0644 |
|
modinfo | File | 1.07 KB | 0644 |
|
modprobe | File | 3.35 KB | 0644 |
|
mogrify | File | 8.9 KB | 0644 |
|
mokutil | File | 1.16 KB | 0644 |
|
monodevelop | File | 446 B | 0644 |
|
montage | File | 8.9 KB | 0644 |
|
more | File | 528 B | 0644 |
|
mount | File | 1.59 KB | 0644 |
|
mount.linux | File | 10.36 KB | 0644 |
|
mountpoint | File | 487 B | 0644 |
|
mplayer | File | 11.06 KB | 0644 |
|
mplayer2 | File | 11.06 KB | 0644 |
|
mr | File | 2.46 KB | 0644 |
|
msgsnarf | File | 451 B | 0644 |
|
msynctool | File | 1.33 KB | 0644 |
|
mtr | File | 1.88 KB | 0644 |
|
mtx | File | 1.16 KB | 0644 |
|
munin-node-configure | File | 758 B | 0644 |
|
munin-run | File | 651 B | 0644 |
|
munin-update | File | 654 B | 0644 |
|
munindoc | File | 322 B | 0644 |
|
mussh | File | 1.16 KB | 0644 |
|
mutt | File | 4.23 KB | 0644 |
|
muttng | File | 4.23 KB | 0644 |
|
mysql | File | 2.49 KB | 0644 |
|
mysqladmin | File | 1.55 KB | 0644 |
|
namei | File | 500 B | 0644 |
|
nc | File | 1.08 KB | 0644 |
|
ncal | File | 886 B | 0644 |
|
ncftp | File | 629 B | 0644 |
|
nethogs | File | 564 B | 0644 |
|
netplan | File | 988 B | 0644 |
|
networkctl | File | 2.24 KB | 0644 |
|
newlist | File | 575 B | 0644 |
|
newusers | File | 677 B | 0644 |
|
ngrep | File | 779 B | 0644 |
|
nmap | File | 1.81 KB | 0644 |
|
nmcli | File | 3.74 KB | 0644 |
|
nproc | File | 475 B | 0644 |
|
nsenter | File | 1.14 KB | 0644 |
|
nslookup | File | 1.97 KB | 0644 |
|
ntpdate | File | 723 B | 0644 |
|
oggdec | File | 848 B | 0644 |
|
openssl | File | 11.24 KB | 0644 |
|
openvpn | File | 553 B | 0644 |
|
opera | File | 1.36 KB | 0644 |
|
optipng | File | 1.16 KB | 0644 |
|
p4 | File | 1.45 KB | 0644 |
|
pacat | File | 15.21 KB | 0644 |
|
pack200 | File | 2.17 KB | 0644 |
|
pacmd | File | 15.21 KB | 0644 |
|
pactl | File | 15.21 KB | 0644 |
|
padsp | File | 15.21 KB | 0644 |
|
paplay | File | 15.21 KB | 0644 |
|
parec | File | 15.21 KB | 0644 |
|
parecord | File | 15.21 KB | 0644 |
|
partx | File | 1.22 KB | 0644 |
|
passwd | File | 497 B | 0644 |
|
pasuspender | File | 15.21 KB | 0644 |
|
patch | File | 1.71 KB | 0644 |
|
pbzip2 | File | 1.06 KB | 0644 |
|
pccardctl | File | 382 B | 0644 |
|
pdftotext | File | 932 B | 0644 |
|
pdlzip | File | 1.12 KB | 0644 |
|
perl | File | 3.43 KB | 0644 |
|
perldoc | File | 3.43 KB | 0644 |
|
perltidy | File | 1.25 KB | 0644 |
|
pgrep | File | 1.18 KB | 0644 |
|
phing | File | 2.52 KB | 0644 |
|
pidof | File | 510 B | 0644 |
|
pigz | File | 1.16 KB | 0644 |
|
pine | File | 881 B | 0644 |
|
pinfo | File | 1.88 KB | 0644 |
|
ping | File | 1.9 KB | 0644 |
|
ping6 | File | 1.9 KB | 0644 |
|
pivot_root | File | 387 B | 0644 |
|
pkg-config | File | 1.27 KB | 0644 |
|
pkg-get | File | 2.09 KB | 0644 |
|
pkg_deinstall | File | 502 B | 0644 |
|
pkg_delete | File | 502 B | 0644 |
|
pkg_info | File | 502 B | 0644 |
|
pkgadd | File | 1.7 KB | 0644 |
|
pkgrm | File | 1.05 KB | 0644 |
|
pkgtool | File | 850 B | 0644 |
|
pkgutil | File | 3.92 KB | 0644 |
|
pkill | File | 1.18 KB | 0644 |
|
plague-client | File | 415 B | 0644 |
|
plzip | File | 1.12 KB | 0644 |
|
pm-hibernate | File | 323 B | 0644 |
|
pm-is-supported | File | 336 B | 0644 |
|
pm-powersave | File | 282 B | 0644 |
|
pm-suspend | File | 323 B | 0644 |
|
pm-suspend-hybrid | File | 323 B | 0644 |
|
pmake | File | 6.04 KB | 0644 |
|
pngfix | File | 799 B | 0644 |
|
poff | File | 688 B | 0644 |
|
pon | File | 440 B | 0644 |
|
portinstall | File | 915 B | 0644 |
|
portsnap | File | 493 B | 0644 |
|
portupgrade | File | 479 B | 0644 |
|
postalias | File | 1009 B | 0644 |
|
postcat | File | 933 B | 0644 |
|
postconf | File | 850 B | 0644 |
|
postfix | File | 675 B | 0644 |
|
postmap | File | 1009 B | 0644 |
|
postsuper | File | 1.71 KB | 0644 |
|
povray | File | 1.94 KB | 0644 |
|
ppc-koji | File | 6.22 KB | 0644 |
|
prelink | File | 915 B | 0644 |
|
prlimit | File | 1.3 KB | 0644 |
|
pro | File | 1.46 KB | 0644 |
|
protoc | File | 1.49 KB | 0644 |
|
psql | File | 4.52 KB | 0644 |
|
pulseaudio | File | 15.21 KB | 0644 |
|
puppet | File | 9.56 KB | 0644 |
|
puppetca | File | 9.56 KB | 0644 |
|
puppetd | File | 9.56 KB | 0644 |
|
puppetdoc | File | 9.56 KB | 0644 |
|
puppetmasterd | File | 9.56 KB | 0644 |
|
puppetqd | File | 9.56 KB | 0644 |
|
puppetrun | File | 9.56 KB | 0644 |
|
pv | File | 719 B | 0644 |
|
pvchange | File | 19.51 KB | 0644 |
|
pvcreate | File | 19.51 KB | 0644 |
|
pvdisplay | File | 19.51 KB | 0644 |
|
pvmove | File | 19.51 KB | 0644 |
|
pvremove | File | 19.51 KB | 0644 |
|
pvs | File | 19.51 KB | 0644 |
|
pvscan | File | 19.51 KB | 0644 |
|
pwck | File | 342 B | 0644 |
|
pwd | File | 453 B | 0644 |
|
pwdx | File | 485 B | 0644 |
|
pwgen | File | 586 B | 0644 |
|
pxz | File | 1.56 KB | 0644 |
|
py.test | File | 1.74 KB | 0644 |
|
py.test-2 | File | 1.74 KB | 0644 |
|
py.test-3 | File | 1.74 KB | 0644 |
|
pycodestyle | File | 732 B | 0644 |
|
pydoc | File | 989 B | 0644 |
|
pydoc3 | File | 989 B | 0644 |
|
pyflakes | File | 445 B | 0644 |
|
pygmentize | File | 1.04 KB | 0644 |
|
pylint | File | 2.46 KB | 0644 |
|
pylint-2 | File | 2.46 KB | 0644 |
|
pylint-3 | File | 2.46 KB | 0644 |
|
pypy | File | 1.64 KB | 0644 |
|
pypy3 | File | 1.64 KB | 0644 |
|
python | File | 1.64 KB | 0644 |
|
python2 | File | 1.64 KB | 0644 |
|
python3 | File | 1.64 KB | 0644 |
|
pyvenv | File | 428 B | 0644 |
|
pyvenv-3.4 | File | 428 B | 0644 |
|
pyvenv-3.5 | File | 428 B | 0644 |
|
qdbus | File | 383 B | 0644 |
|
qemu | File | 3.28 KB | 0644 |
|
qemu-kvm | File | 3.28 KB | 0644 |
|
qemu-system-i386 | File | 3.28 KB | 0644 |
|
qemu-system-x86_64 | File | 3.28 KB | 0644 |
|
qrunner | File | 393 B | 0644 |
|
querybts | File | 1.06 KB | 0644 |
|
quota | File | 3.62 KB | 0644 |
|
quotacheck | File | 3.62 KB | 0644 |
|
quotaoff | File | 3.62 KB | 0644 |
|
quotaon | File | 3.62 KB | 0644 |
|
radvdump | File | 498 B | 0644 |
|
ralsh | File | 9.56 KB | 0644 |
|
raw | File | 482 B | 0644 |
|
rcs | File | 893 B | 0644 |
|
rcsdiff | File | 893 B | 0644 |
|
rdesktop | File | 1.66 KB | 0644 |
|
rdict | File | 1.83 KB | 0644 |
|
readprofile | File | 679 B | 0644 |
|
remove_members | File | 571 B | 0644 |
|
removepkg | File | 555 B | 0644 |
|
renice | File | 784 B | 0644 |
|
reportbug | File | 2.43 KB | 0644 |
|
repquota | File | 3.62 KB | 0644 |
|
resizepart | File | 568 B | 0644 |
|
resolvconf | File | 428 B | 0644 |
|
rev | File | 432 B | 0644 |
|
rfcomm | File | 9.53 KB | 0644 |
|
ri | File | 3.65 KB | 0644 |
|
rlog | File | 893 B | 0644 |
|
rmlist | File | 365 B | 0644 |
|
rmmod | File | 523 B | 0644 |
|
route | File | 792 B | 0644 |
|
rpcdebug | File | 1002 B | 0644 |
|
rpm | File | 10.1 KB | 0644 |
|
rpm2targz | File | 370 B | 0644 |
|
rpm2tgz | File | 370 B | 0644 |
|
rpm2txz | File | 370 B | 0644 |
|
rpmbuild | File | 10.1 KB | 0644 |
|
rpmbuild-md5 | File | 10.1 KB | 0644 |
|
rpmcheck | File | 514 B | 0644 |
|
rrdtool | File | 440 B | 0644 |
|
rsync | File | 3.43 KB | 0644 |
|
rtcwake | File | 1.06 KB | 0644 |
|
runuser | File | 864 B | 0644 |
|
s390-koji | File | 6.22 KB | 0644 |
|
sbcl | File | 677 B | 0644 |
|
sbcl-mt | File | 677 B | 0644 |
|
sbopkg | File | 1.72 KB | 0644 |
|
scp | File | 12 KB | 0644 |
|
screen | File | 2.2 KB | 0644 |
|
script | File | 667 B | 0644 |
|
scriptreplay | File | 625 B | 0644 |
|
sdptool | File | 9.53 KB | 0644 |
|
setarch | File | 790 B | 0644 |
|
setquota | File | 3.62 KB | 0644 |
|
setsid | File | 440 B | 0644 |
|
setterm | File | 2.53 KB | 0644 |
|
sftp | File | 12 KB | 0644 |
|
sh | File | 874 B | 0644 |
|
sidedoor | File | 12 KB | 0644 |
|
sitecopy | File | 1.29 KB | 0644 |
|
slackpkg | File | 3.34 KB | 0644 |
|
slapt-get | File | 2.37 KB | 0644 |
|
slapt-src | File | 1.85 KB | 0644 |
|
slogin | File | 12 KB | 0644 |
|
smartctl | File | 4.47 KB | 0644 |
|
smbcacls | File | 6.96 KB | 0644 |
|
smbclient | File | 6.96 KB | 0644 |
|
smbcquotas | File | 6.96 KB | 0644 |
|
smbget | File | 6.96 KB | 0644 |
|
smbpasswd | File | 6.96 KB | 0644 |
|
smbtar | File | 6.96 KB | 0644 |
|
smbtree | File | 6.96 KB | 0644 |
|
snap | File | 2.48 KB | 0644 |
|
snownews | File | 367 B | 0644 |
|
sparc-koji | File | 6.22 KB | 0644 |
|
spovray | File | 1.94 KB | 0644 |
|
sqlite3 | File | 599 B | 0644 |
|
ss | File | 1.08 KB | 0644 |
|
ssh | File | 12 KB | 0644 |
|
ssh-add | File | 501 B | 0644 |
|
ssh-copy-id | File | 488 B | 0644 |
|
ssh-keygen | File | 1.69 KB | 0644 |
|
sshfs | File | 594 B | 0644 |
|
sshmitm | File | 368 B | 0644 |
|
sshow | File | 428 B | 0644 |
|
strace | File | 3.37 KB | 0644 |
|
stream | File | 8.9 KB | 0644 |
|
strings | File | 1.1 KB | 0644 |
|
sudo | File | 1.28 KB | 0644 |
|
sudoedit | File | 1.28 KB | 0644 |
|
svcadm | File | 4.95 KB | 0644 |
|
svk | File | 8.66 KB | 0644 |
|
swaplabel | File | 635 B | 0644 |
|
swapoff | File | 743 B | 0644 |
|
swapon | File | 1.49 KB | 0644 |
|
sync_members | File | 734 B | 0644 |
|
synclient | File | 602 B | 0644 |
|
sysbench | File | 4.04 KB | 0644 |
|
sysctl | File | 804 B | 0644 |
|
systemctl | File | 13.54 KB | 0644 |
|
systemd-analyze | File | 4.89 KB | 0644 |
|
systemd-cat | File | 1.9 KB | 0644 |
|
systemd-cgls | File | 2.33 KB | 0644 |
|
systemd-cgtop | File | 2.08 KB | 0644 |
|
systemd-delta | File | 1.94 KB | 0644 |
|
systemd-detect-virt | File | 1.37 KB | 0644 |
|
systemd-path | File | 1.86 KB | 0644 |
|
systemd-resolve | File | 3.03 KB | 0644 |
|
systemd-run | File | 4.8 KB | 0644 |
|
tar | File | 18.8 KB | 0644 |
|
taskset | File | 1.18 KB | 0644 |
|
tc | File | 26.41 KB | 0644 |
|
tcpdump | File | 1011 B | 0644 |
|
tcpkill | File | 441 B | 0644 |
|
tcpnice | File | 434 B | 0644 |
|
tightvncviewer | File | 3.13 KB | 0644 |
|
timedatectl | File | 2.82 KB | 0644 |
|
timeout | File | 932 B | 0644 |
|
tipc | File | 7.16 KB | 0644 |
|
tox | File | 940 B | 0644 |
|
tracepath | File | 510 B | 0644 |
|
tracepath6 | File | 510 B | 0644 |
|
tshark | File | 3 KB | 0644 |
|
tune2fs | File | 1.61 KB | 0644 |
|
typeset | File | 1.27 KB | 0644 |
|
ua | File | 1.46 KB | 0644 |
|
udevadm | File | 3.67 KB | 0644 |
|
udisksctl | File | 857 B | 0644 |
|
ufw | File | 2.44 KB | 0644 |
|
umount | File | 957 B | 0644 |
|
umount.linux | File | 4.37 KB | 0644 |
|
unace | File | 480 B | 0644 |
|
unpack200 | File | 1.22 KB | 0644 |
|
unrar | File | 614 B | 0644 |
|
unshare | File | 792 B | 0644 |
|
unshunt | File | 351 B | 0644 |
|
update-alternatives | File | 2.47 KB | 0644 |
|
update-initramfs | File | 581 B | 0644 |
|
update-rc.d | File | 2.13 KB | 0644 |
|
upgradepkg | File | 811 B | 0644 |
|
urlsnarf | File | 437 B | 0644 |
|
useradd | File | 1.22 KB | 0644 |
|
userdel | File | 539 B | 0644 |
|
usermod | File | 1.34 KB | 0644 |
|
utmpdump | File | 475 B | 0644 |
|
uuidd | File | 862 B | 0644 |
|
uuidgen | File | 657 B | 0644 |
|
uuidparse | File | 727 B | 0644 |
|
valgrind | File | 3.42 KB | 0644 |
|
vgcfgbackup | File | 19.51 KB | 0644 |
|
vgcfgrestore | File | 19.51 KB | 0644 |
|
vgchange | File | 19.51 KB | 0644 |
|
vgck | File | 19.51 KB | 0644 |
|
vgconvert | File | 19.51 KB | 0644 |
|
vgcreate | File | 19.51 KB | 0644 |
|
vgdisplay | File | 19.51 KB | 0644 |
|
vgexport | File | 19.51 KB | 0644 |
|
vgextend | File | 19.51 KB | 0644 |
|
vgimport | File | 19.51 KB | 0644 |
|
vgmerge | File | 19.51 KB | 0644 |
|
vgmknodes | File | 19.51 KB | 0644 |
|
vgreduce | File | 19.51 KB | 0644 |
|
vgremove | File | 19.51 KB | 0644 |
|
vgrename | File | 19.51 KB | 0644 |
|
vgs | File | 19.51 KB | 0644 |
|
vgscan | File | 19.51 KB | 0644 |
|
vgsplit | File | 19.51 KB | 0644 |
|
vigr | File | 432 B | 0644 |
|
vipw | File | 432 B | 0644 |
|
vmstat | File | 708 B | 0644 |
|
vncviewer | File | 3.13 KB | 0644 |
|
vpnc | File | 2.28 KB | 0644 |
|
wall | File | 634 B | 0644 |
|
watch | File | 1.13 KB | 0644 |
|
wdctl | File | 1.34 KB | 0644 |
|
webmitm | File | 368 B | 0644 |
|
wget | File | 6.48 KB | 0644 |
|
whatis | File | 2.66 KB | 0644 |
|
whereis | File | 535 B | 0644 |
|
whiptail | File | 345 B | 0644 |
|
wine | File | 509 B | 0644 |
|
wipefs | File | 1.16 KB | 0644 |
|
withlist | File | 413 B | 0644 |
|
wodim | File | 3.54 KB | 0644 |
|
wol | File | 1.11 KB | 0644 |
|
wsimport | File | 1.11 KB | 0644 |
|
wtf | File | 928 B | 0644 |
|
wvdial | File | 1.25 KB | 0644 |
|
xdg-mime | File | 2.21 KB | 0644 |
|
xdg-settings | File | 768 B | 0644 |
|
xfreerdp | File | 1.05 KB | 0644 |
|
xgamma | File | 2.01 KB | 0644 |
|
xhost | File | 376 B | 0644 |
|
xm | File | 7.43 KB | 0644 |
|
xmllint | File | 1.04 KB | 0644 |
|
xmlwf | File | 699 B | 0644 |
|
xmms | File | 663 B | 0644 |
|
xmodmap | File | 486 B | 0644 |
|
xpovray | File | 1.94 KB | 0644 |
|
xrandr | File | 2.14 KB | 0644 |
|
xrdb | File | 510 B | 0644 |
|
xsltproc | File | 1.22 KB | 0644 |
|
xvnc4viewer | File | 3.13 KB | 0644 |
|
xxd | File | 471 B | 0644 |
|
xz | File | 1.56 KB | 0644 |
|
xzdec | File | 739 B | 0644 |
|
ypcat | File | 768 B | 0644 |
|
ypmatch | File | 768 B | 0644 |
|
yum-arch | File | 360 B | 0644 |
|
zopfli | File | 694 B | 0644 |
|
zopflipng | File | 930 B | 0644 |
|
zramctl | File | 1.23 KB | 0644 |
|