# bash completion for GNU tar -*- shell-script -*- # # General info # ============ # # The "old" style arguments # ------------------------- # # We don't "advice" the old tar option format by default for GNU tar, example: # # 'tar czfT /tmp/archive.tar patterns.txt' # # We rather advice the 'tar -czf /tmp/archive.tar -T patterns.txt' format of # arguments. Though, if user starts the 'first' tar argument without leading # dash, we treat the command line apropriately. # # # long/short options origin # ------------------------- # # For GNU tar, everything is parsed from `tar --help` output so not so much # per-distribution work should be needed. The _parse_help does not seem to be # good enough so parsed here directly. # # # FIXME: --starting-file (-K) (should be matched for extraction only) # FIXME: handle already used (at least short) options # FIXME: Test-cases for make check. # - check for no global variable pollution # FIXME: why PS4='$BASH_SOURCE:$LINENO: ' shows sometimes negative lines? # FIXME: timeout on tarball listing # FIXME: cache 'tar --help' parsing results into global variables # FIXME: at least 'tar -<tab>' should show some helping text (apart from just # pure option advices) # FIXME: short option completion should be more intuitive # - verbose mode option should be advised multiple times # - mode option should be advised only once # - format option should be advised only once # ... __gtar_parse_help_opt() { local opttype arg opt separator optvar opttype=long arg="$2" opt="$1" separator=" " case "$opt" in --*) ;; -\?) return ;; -*) opttype=short opt=${opt##-} separator= ;; *) echo >&2 "not an option $opt" return 1 ;; esac # Remove arguments. opt=${opt//\[*/} opt=${opt//=*/=} # Basic sanity. opt=${opt//\"*/} opt=${opt//\'*/} opt=${opt//\;*/} optvar=$opttype'_arg_'$arg eval "$optvar=\"\$$optvar$separator\"\"$opt\"" } __gtar_parse_help_line() { local i for i in $1; do case "$i" in # regular options --*|-*) __gtar_parse_help_opt "$i" "$2" ;; # end once there is single non-option word *) break esac done } __gnu_tar_parse_help() { local str line arg while IFS= read line; do # Ok, this requires some comment probably. The GNU help output prints # options on lines beginning with spaces. After that, there is one # or more options separated by ', ' separator string. We are matching # like this then: ^<spaces>(<separator>?<option>)+<whatever>$ if [[ "$line" =~ \ ^[[:blank:]]{1,10}(((,[[:blank:]])?(--?([\]\[a-zA-Z0-9?=-]+))(,[[:space:]])?)+).*$ ]]; then line=${BASH_REMATCH[1]} str="${line//,/ }" # Detect that all options on this line accept arguments (and whether # the arguments are required or not). Note that only long option # description in GNU help output mentions arguments. So the $line # variable may contain e.g. '-X, --XXX[=NAME], -XXX2[=NAME]'. arg=none if [[ "$line" =~ --[A-Za-z0-9-]+(\[?)= ]]; then [[ -n "${BASH_REMATCH[1]}" ]] && arg=opt || arg=req fi __gtar_parse_help_line "$str" "$arg" fi done <<<"$(tar --help)" long_opts="\ $long_arg_none\ $long_arg_opt\ $long_arg_req" short_opts="$short_arg_none$short_arg_opt$short_arg_req" } # Hack: parse --warning keywords from tar's error output __gtar_parse_warnings() { local line while IFS= read line; do if [[ $line =~ ^[[:blank:]]*-[[:blank:]]*[\`\']([a-zA-Z0-9-]+)\'$ ]]; then echo "${BASH_REMATCH[1]} no-${BASH_REMATCH[1]}" fi done <<<"$(LC_ALL=C tar --warning= 2>&1)" } # Helper to obtain last character of string. __tar_last_char() { echo "${1: $(( ${#1} - 1))}" } __tar_parse_old_opt() { local first_word char # current word is the first word [[ "$cword" -eq 1 && -n "$cur" && "${cur:0:1}" != '-' ]] \ && old_opt_progress=1 # check that first argument does not begin with "-" first_word=${words[1]} [[ -n "$first_word" && "${first_word:0:1}" != "-" ]] \ && old_opt_used=1 # parse the old option (if present) contents to allow later code expect # corresponding arguments if [[ $old_opt_used -eq 1 ]]; then char=${first_word:0:1} while [[ -n "$char" ]]; do if __tar_is_argreq "$char"; then old_opt_parsed+=("$char") fi first_word=${first_word##$char} char=${first_word:0:1} done fi } # Make the analysis of whole command line. __tar_preparse_cmdline() { local first_arg my_args tmparg i modes="ctxurdA" shift # progname __tar_parse_old_opt first_arg=1 for i in "$@"; do case "$i" in --delete|--test-label) tar_mode=${i:2:100} tar_mode_arg=$i break ;; --*) # skip ;; -*[$modes]*) tar_mode=${i//[^$modes]/} tar_mode=${tar_mode:0:1} tar_mode_arg=$i break ;; *[$modes]*) # Only the first arg may be "MODE" without leading dash if [[ $first_arg -eq 1 ]]; then tar_mode=${i//[^$modes]/} tar_mode=${tar_mode:0:1} tar_mode_arg=$i fi ;; esac first_arg=0 done } # Generate completions for -f/--file. __tar_file_option() { local ext="$1" case "$tar_mode" in c) # no need to advise user to re-write existing tarball _filedir -d ;; *) _filedir "$ext" ;; esac } # Returns truth if option requires argument. No equal sign must be pasted. # Accepts option in format: 'c', '-c', '--create' __tar_is_argreq() { local opt opt=$1 case "$opt" in -[A-Za-z0-9?]) [[ "$short_arg_req" =~ ${opt##-} ]] && return 0 ;; [A-Za-z0-9?]) [[ "$short_arg_req" =~ ${opt} ]] && return 0 ;; --*) [[ "$long_arg_req" =~ [[:blank:]]$opt=[[:blank:]] ]] && return 0 ;; esac return 1 } # Called only for short parameter __tar_complete_mode() { local short_modes has_mode rawopt generated \ allshort_raw_unused allshort_raw \ filler i short_modes="ctx" [[ -z "$basic_tar" ]] && short_modes="ctxurdA" # Remove prefix when needed rawopt=${cur#-} # -c -z -x ... => czx allshort_raw=${short_opts//[- ]/} # init the 'mode' option if no option is in ${cur} if [[ "$tar_mode" == none ]]; then # when user passed something like 'tar cf' do not put the '-' before filler= if [[ -z "$cur" && -z "$basic_tar" ]]; then filler=- fi generated="" for (( i=0 ; 1; i++ )); do local c="${short_modes:$i:1}" [[ -z "$c" ]] && break generated+=" $filler$cur$c" done COMPREPLY=( $(compgen -W "$generated" ) ) return 0 fi # The last short option requires argument, like '-cf<TAB>'. Cut the # completion here to enforce argument processing. if [[ "$old_opt_progress" -eq 0 ]] \ && __tar_is_argreq "$(__tar_last_char "$cur")"; then COMPREPLY=( "$cur" ) && return 0 fi allshort_raw_unused=${allshort_raw//[$rawopt]/} if [[ "$tar_mode" != none ]]; then allshort_raw_unused=${allshort_raw_unused//[$short_modes]} fi generated= for (( i=0 ; 1; i++ )); do local c="${allshort_raw_unused:$i:1}" [[ -z "$c" ]] && break generated+=" $cur$c" done COMPREPLY=( $( compgen -W "$generated" ) ) return 0 } __gtar_complete_lopts() { local rv COMPREPLY=( $( compgen -W "$long_opts" -- "$cur" ) ) rv=$? [[ $COMPREPLY == *= ]] && compopt -o nospace return $rv } __gtar_complete_sopts() { local generated short_mode_opts i c short_mode_opts="ctxurdA" generated=${short_opts//[$short_mode_opts]/} for (( i=0 ; 1; i++ )); do c="${allshort_raw_unused:$i:1}" [[ -z "$c" ]] && break generated+=" $cur$c" done COMPREPLY=( $( compgen -W "$generated" -- "$cur" ) ) } __tar_try_mode() { case "$cur" in --*) # posix tar does not support long opts [[ -n "$basic_tar" ]] && return 0 __gtar_complete_lopts return $? ;; -*) # posix tar does not support short optios [[ -n "$basic_tar" ]] && return 0 __tar_complete_mode && return 0 ;; *) if [[ "$cword" -eq 1 || "$tar_mode" == none ]]; then __tar_complete_mode && return 0 fi ;; esac return 1 } __tar_adjust_PREV_from_old_option() { # deal with old style arguments here # $ tar cfTC # expects this sequence of arguments: # $ tar cfTC ARCHIVE_FILE PATTERNS_FILE CHANGE_DIR if [[ "$old_opt_used" -eq 1 && "$cword" -gt 1 \ && "$cword" -lt $(( ${#old_opt_parsed[@]} + 2 )) ]]; then # make e.g. 'C' option from 'cffCT' prev="-${old_opt_parsed[ $cword - 2 ]}" fi } __tar_extract_like_mode() { local i for i in x d t delete; do [[ "$tar_mode" == "$i" ]] && return 0 done return 1 } __tar_try_list_archive() { local tarball tarbin untar __tar_extract_like_mode || return 1 # This all is just to approach directory completion from "virtual" # directory structure in tarball (for which the _filedir is unusable) set -- "${words[@]}" tarbin=$1 untar="tf" shift read tarball <<<"$(printf -- '%s\n' "$@" \ | command sed -n "/^.\{1,\}$regex\$/p")" if [[ -n "$tarball" ]]; then local IFS=$'\n' COMPREPLY=($(compgen -o filenames -W "$( while read line; do printf "%q\n" "$(printf %q"\n" "$line")" done <<<"$($tarbin $untar "$tarball" 2>/dev/null)" )" -- "$(printf "%q\n" "$cur")")) return 0 fi } __tar_cleanup_prev() { if [[ "$prev" =~ ^-[a-zA-Z0-9?]*$ ]]; then # transformate '-caf' ~> '-f' prev="-$(__tar_last_char "$prev")" fi } __tar_detect_ext() { local tars='@(@(tar|gem|spkg)?(.@(Z|[bgx]z|bz2|lz?(ma|o)))|t@([abglx]z|b?(z)2))' ext="$tars" regex='\(\(tar\|gem\|spkg\)\(\.\(Z\|[bgx]z\|bz2\|lz\(ma\|o\)\?\)\)\?\|t\([abglx]z\|bz\?2\)\)' case "$tar_mode_arg" in --*) # Should never happen? ;; ?(-)*[cr]*f) ext='@(tar|gem|spkg)' case ${words[1]} in *a*) ext="$tars" ;; *z*) ext='t?(ar.)gz' ;; *Z*) ext='ta@(r.Z|z)' ;; *[jy]*) ext='t@(?(ar.)bz?(2)|b2)' ;; *J*) ext='t?(ar.)xz' ;; esac ;; +([^ZzJjy])f) ext="$tars" regex='\(\(tar\|gem\|spkg\)\(\.\(Z\|[bgx]z\|bz2\|lz\(ma\|o\)\?\)\)\?\|t\([abglx]z\|bz\?2\)\)' ;; *[Zz]*f) ext='@(@(t?(ar.)|gem.|spkg.)@(gz|Z)|taz)' regex='\(\(t\(ar\.\)\?\|gem\.\|spkg\.\)\(gz\|Z\)\|taz\)' ;; *[jy]*f) ext='@(@(t?(ar.)|gem.)bz?(2)|spkg|tb2)' regex='\(\(t\(ar\.\)\?\|gem\.\)bz2\?\|spkg\|tb2\)' ;; *[J]*f) ext='@(@(tar|gem|spkg).@(lzma|xz)|t[lx]z)' regex='\(\(tar\|gem\|spkg\)\.\(lzma\|xz\)\|t[lx]z\)' ;; esac } _gtar() { local long_opts short_opts \ long_arg_none long_arg_opt long_arg_req \ short_arg_none short_arg_opt short_arg_req \ tar_mode tar_mode_arg old_opt_progress=0 \ old_opt_used=0 old_opt_parsed=() # Main mode, e.g. -x or -c (extract/creation) local tar_mode=none # The mode argument, e.g. -cpf or -c # FIXME: handle long options local tar_mode_arg= if [[ "$_TAR_OPT_DEBUG" == 1 ]]; then set -x PS4="\$BASH_SOURCE:\$LINENO: " fi local cur prev words cword split _init_completion -s || return # Fill the {long,short}_{opts,arg*} __gnu_tar_parse_help __tar_preparse_cmdline "${words[@]}" local ext regex tar untar __tar_detect_ext while true; do # just-for-easy-break while, not looping __tar_adjust_PREV_from_old_option __tar_posix_prev_handle && break __tar_cleanup_prev # Handle all options *REQUIRING* argument. Optional arguments are up to # user (TODO: is there any sane way to deal with this?). This case # statement successes only if there already is PREV. case $prev in -C|--directory) _filedir -d break ;; --atime-preserve) COMPREPLY=( $( compgen -W 'replace system' -- "$cur" ) ) break ;; --group) COMPREPLY=( $( compgen -g -- "$cur" ) ) break ;; --owner) COMPREPLY=( $( compgen -u -- "$cur" ) ) break ;; -F|--info-script|--new-volume-script|--rmt-command|--rsh-command|\ -I|--use-compress-program) compopt -o filenames COMPREPLY=( $( compgen -c -- "$cur" ) ) break ;; --volno-file|--add-file|-T|--files-from|-X|--exclude-from|\ --index-file|--listed-incremental|-g) _filedir break ;; -H|--format) COMPREPLY=( $( compgen -W 'gnu oldgnu pax posix ustar v7' \ -- "$cur" ) ) break ;; --quoting-style) COMPREPLY=( $( compgen -W 'literal shell shell-always c c-maybe escape locale clocale' -- "$cur" ) ) break ;; --totals) COMPREPLY=( $( compgen -W 'SIGHUP SIGQUIT SIGINT SIGUSR1 SIGUSR2' \ -- "$cur" ) ) break ;; --warning) COMPREPLY=( $( compgen -W "$(__gtar_parse_warnings)" -- "$cur" ) ) break ;; --file|-f|-!(-*)f) __tar_file_option "$ext" break ;; --*) # parameter with required argument but no completion yet [[ " $long_arg_req " =~ \ $prev=\ ]] && break # parameter with optional argument passed with =, something like # --occurrence=*<TAB> which is not handled above [[ " $long_arg_opt " =~ \ $prev\ ]] && break # if there is some unknown option with '=', for example # (literally) user does --nonexistent=<TAB>, we do not want # continue also $split && break # Most probably, when code goes here, the PREV variable contains # some string from "$long_arg_none" and we want continue. ;; -[a-zA-Z0-9?]) # argument required but no completion yet [[ "$short_arg_req" =~ ${prev##-} ]] && break ;; esac # safety belts case "$cur" in -[a-zA-Z0-9]=*) # e.g. 'tar -c -f=sth' does not what user could expect break ;; esac # Handle the main operational mode of tar. We should do it as soon as # possible. __tar_try_mode && break # handle others case "$cur" in --*) __gtar_complete_lopts break ;; -*) # called only if it is *not* first parameter __gtar_complete_sopts break ;; esac # the first argument must be "mode" argument or --param, if any of those # was truth - the 'break' statement would have been already called [[ "$cword" -eq 1 ]] && break __tar_try_list_archive && break # file completion on relevant files if [[ $tar_mode != none ]]; then _filedir fi break done # just-for-easy-break while if [[ "$_TAR_OPT_DEBUG" == 1 ]]; then set +x unset PS4 fi } __tar_posix_prev_handle() { case "$prev" in -f) __tar_file_option "$ext" return 0 ;; -b) return 0 esac return 1 } _posix_tar() { local long_opts short_opts basic_tar \ long_arg_none long_arg_opt long_arg_req \ short_arg_none short_arg_opt short_arg_req \ tar_mode tar_mode_arg old_opt_progress=0 \ old_opt_used=1 old_opt_parsed=() # Main mode, e.g. -x or -c (extract/creation) local tar_mode=none # The mode argument, e.g. -cpf or -c local tar_mode_arg= local cur prev words cword split _init_completion -s || return basic_tar=yes tar_mode=none # relatively compatible modes are {c,t,x} # relatively compatible options {b,f,m,v,w} short_arg_req="fb" short_arg_none="wmv" short_opts="$short_arg_req$short_arg_none" __tar_preparse_cmdline "${words[@]}" local ext regex tar untar __tar_detect_ext __tar_adjust_PREV_from_old_option __tar_posix_prev_handle && return __tar_try_mode && return __tar_try_list_archive && return # file completion on relevant files _filedir } _tar() { local cmd=${COMP_WORDS[0]} func line read line <<<"$($cmd --version 2>/dev/null)" case "$line" in *GNU*) func=_gtar ;; *) func=_posix_tar ;; esac $func "$@" # Install real completion for subsequent completions if [ -n "${COMP_TAR_INTERNAL_PATHS:-}" ]; then complete -F $func -o dirnames tar else complete -F $func tar fi unset -f _tar } if [ -n "${COMP_TAR_INTERNAL_PATHS:-}" ]; then complete -F _tar -o dirnames tar complete -F _gtar -o dirnames gtar complete -F _posix_tar -o dirnames bsdtar complete -F _posix_tar -o dirnames star else complete -F _tar tar complete -F _gtar gtar complete -F _posix_tar bsdtar complete -F _posix_tar star fi # ex: 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 |
|