Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.20
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
zsh /
functions /
Completion /
Debian /
[ HOME SHELL ]
Name
Size
Permission
Action
_a2utils
490
B
-rw-r--r--
_apt
25.28
KB
-rw-r--r--
_apt-file
1.91
KB
-rw-r--r--
_apt-move
1.82
KB
-rw-r--r--
_apt-show-versions
750
B
-rw-r--r--
_aptitude
4.2
KB
-rw-r--r--
_auto-apt
1.06
KB
-rw-r--r--
_axi-cache
872
B
-rw-r--r--
_bts
9.38
KB
-rw-r--r--
_bug
4.76
KB
-rw-r--r--
_cdbs-edit-patch
56
B
-rw-r--r--
_dak
8.24
KB
-rw-r--r--
_dchroot
1.1
KB
-rw-r--r--
_dchroot-dsa
1.02
KB
-rw-r--r--
_dcut
4.93
KB
-rw-r--r--
_deb_architectures
316
B
-rw-r--r--
_deb_codenames
347
B
-rw-r--r--
_deb_files
509
B
-rw-r--r--
_deb_packages
4.31
KB
-rw-r--r--
_debbugs_bugnumber
388
B
-rw-r--r--
_debchange
4.92
KB
-rw-r--r--
_debcheckout
1.17
KB
-rw-r--r--
_debdiff
856
B
-rw-r--r--
_debfoster
3.37
KB
-rw-r--r--
_deborphan
2.29
KB
-rw-r--r--
_debsign
623
B
-rw-r--r--
_debsnap
2.6
KB
-rw-r--r--
_debuild
1.13
KB
-rw-r--r--
_dlocate
893
B
-rw-r--r--
_dpatch-edit-patch
1.25
KB
-rw-r--r--
_dpkg
7.64
KB
-rw-r--r--
_dpkg-buildpackage
1.11
KB
-rw-r--r--
_dpkg-cross
1.12
KB
-rw-r--r--
_dpkg-repack
321
B
-rw-r--r--
_dpkg_source
1.29
KB
-rw-r--r--
_dput
2.1
KB
-rw-r--r--
_dscverify
869
B
-rw-r--r--
_dupload
780
B
-rw-r--r--
_git-buildpackage
2.57
KB
-rw-r--r--
_grep-excuses
315
B
-rw-r--r--
_invoke-rc.d
555
B
-rw-r--r--
_lighttpd
414
B
-rw-r--r--
_lintian
4.59
KB
-rw-r--r--
_madison
644
B
-rw-r--r--
_make-kpkg
2.59
KB
-rw-r--r--
_members
390
B
-rw-r--r--
_mergechanges
106
B
-rw-r--r--
_module-assistant
2.05
KB
-rw-r--r--
_pbuilder
1.07
KB
-rw-r--r--
_piuparts
965
B
-rw-r--r--
_reprepro
2.58
KB
-rw-r--r--
_sbuild
8.57
KB
-rw-r--r--
_schroot
1.56
KB
-rw-r--r--
_svn-buildpackage
2.52
KB
-rw-r--r--
_toolchain-source
328
B
-rw-r--r--
_update-alternatives
1.73
KB
-rw-r--r--
_update-rc.d
637
B
-rw-r--r--
_uscan
1.01
KB
-rw-r--r--
_vim-addons
1.87
KB
-rw-r--r--
_wajig
2.51
KB
-rw-r--r--
_wanna-build
2.02
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : _debsnap
#compdef debsnap # Based on debsnap from devscripts-2.20.3 local context state state_descr line ret=1 local -a expl typeset -A opt_args _arguments \ '(-d --destdir)'{-d+,--destdir=}'[set download directory]:download directory:_files -/' \ '(-f --force)'{-f,--force}'[allow non-empty destination directory]' \ '(-v --verbose)'{-v,--verbose}'[print configuration and report progress]' \ --list"[list versions; don't download]" \ --binary'[operate on binary packages (default: source packages)]' \ '*'{-a+,--architecture=}'[specify architectures to download]:architecture to download:_deb_architectures' \ --first='[download all versions newer than this]:version number (lower bound):->versions' \ --last='[download all versions older than this]:version number (upper bound):->versions' \ '(-)'{-h,--help}'[show usage information]' \ '(-)'--version'[show version number and license]' \ '1: :->package' \ '2:version number to download:->versions' \ && ret=0 # -a implies --binary if (( ${+opt_args[-a]} || ${+opt_args[--architecture]} )); then opt_args[--binary]='' fi case $state in (package) if (( ${+opt_args[--binary]} )); then _description binary-packages expl 'binary package to download' _deb_packages "${expl[@]}" avail && ret=0 else _description source-packages expl 'source package to download' _deb_packages "${expl[@]}" source && ret=0 fi ;; (versions) local package=${(Q)line[1]} if [[ -n $package ]]; then # Compute the arguments to --list local -a args () { local i j # repeatable flags with arguments, where the values can't contain colons for i in ${(k)opt_args[(I)(-a|--architecture)]}; do for j in ${(@s.:.)opt_args[$i]}; do [[ -n $j ]] || continue args+=( $i $j ) done done # non-repeatable flags with arguments, where the values may contain colons for i in ${(k)opt_args[(I)(--first|--last)]}; do # Avoid spurious "No matches" results in 'debsnap --first 42.1 --last 42.<TAB>'. [[ $context != option${i}-* ]] || continue # Un-escape colons (epoch separators in the version number) args+=( $i ${(Q)opt_args[$i]} ) done # flags without arguments args+=( ${(k)opt_args[(I)(--binary)]} ) } local -a versions=( ${(Oaf)"$(_call_program versions debsnap --list ${args} -- ${line[1]})"} ) _description -V versions expl ${state_descr} compadd "$@" "${expl[@]}" -a versions && ret=0 else _message -- $state_descr && ret=0 fi ;; esac return ret
Close