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 /
BSD /
[ HOME SHELL ]
Name
Size
Permission
Action
_bsd_disks
470
B
-rw-r--r--
_bsd_pkg
8.65
KB
-rw-r--r--
_bsdconfig
2.33
KB
-rw-r--r--
_bsdinstall
1.89
KB
-rw-r--r--
_chflags
574
B
-rw-r--r--
_csup
1.1
KB
-rw-r--r--
_cu
2.51
KB
-rw-r--r--
_cvsup
937
B
-rw-r--r--
_fbsd_architectures
142
B
-rw-r--r--
_fbsd_device_types
934
B
-rw-r--r--
_fetch
3.16
KB
-rw-r--r--
_file_flags
1.5
KB
-rw-r--r--
_freebsd-update
1.12
KB
-rw-r--r--
_fstat
530
B
-rw-r--r--
_fw_update
294
B
-rw-r--r--
_gstat
490
B
-rw-r--r--
_jail
2.41
KB
-rw-r--r--
_jails
747
B
-rw-r--r--
_jexec
544
B
-rw-r--r--
_jls
705
B
-rw-r--r--
_jot
2.47
KB
-rw-r--r--
_kld
1
KB
-rw-r--r--
_ldap
2.19
KB
-rw-r--r--
_mixerctl
577
B
-rw-r--r--
_nbsd_architectures
502
B
-rw-r--r--
_obsd_architectures
178
B
-rw-r--r--
_pfctl
4.78
KB
-rw-r--r--
_pkgin
2.59
KB
-rw-r--r--
_portaudit
563
B
-rw-r--r--
_portlint
748
B
-rw-r--r--
_portmaster
3.89
KB
-rw-r--r--
_portsnap
1.03
KB
-rw-r--r--
_powerd
743
B
-rw-r--r--
_procstat
1.03
KB
-rw-r--r--
_rcctl
1.02
KB
-rw-r--r--
_signify
1.37
KB
-rw-r--r--
_sockstat
1.33
KB
-rw-r--r--
_sysrc
2.9
KB
-rw-r--r--
_systat
2.85
KB
-rw-r--r--
_vmctl
2.87
KB
-rw-r--r--
_watch-snoop
396
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : _pkgin
#compdef pkgin local curcontext="$curcontext" pkgin=$words[1] cmd ret=1 local -a state state_descr line expl cmds short pkgs local -A opt_args _arguments -s -S -C \ '-c+[enable chrooting pkgin in the given repository]:chroot path:_directories' \ '-d[download only]' \ '-f[force database update]' \ '-F[force package reinstall]' \ '(- 1 *)-h[display usage information]' \ '-l+[only include the packages with the specified status flags]:limit chars:(( \=\:installed\ version\ is\ current \<\:installed\ version\ is\ older \>\:installed\ version\ is\ newer ))' \ '(-y)-n[assume "no" as default answer and print results of actions to be taken line per line]' \ '-p[display results in a parsable format]' \ '-P[display packages versions instead of globs (sd, sfd, srd)]' \ '-t+[log package browsing (dependencies and impact) to specified log file]:log file:_files' \ '(- 1 *)-v[display version information]' \ '-V[be verbose when (un)installing]' \ '(-n)-y[assume "yes" as default answer, except for autoremove]' \ '1:command:->subcommands' \ '*:: :->restargs' && ret=0 if [[ -n $state ]]; then cmds=( ${${${(f)"$(_call_program commands $pkgin -h 2>&1)"}[3,-1]/ - (#b)(?)/:$match:l}%.} ) short=( ${${cmds#*\(}/ #\)/} ) cmds=( ${cmds// #\(*\)/} ) if [[ $state = subcommands && ! -prefix - ]]; then _describe -t commands "command" short -- cmds -M 'r:|-=* r:|=*' && ret=0 return ret fi cmd=${short[(I)${words[1]}:*]} if (( cmd )); then cmd=${cmds[cmd]%%:*} else cmd=$words[1] fi curcontext="${curcontext%:*}-$cmd" case $cmd in avail|autoremove|clean|export|(full-|)upgrade|show(|-no)-keep|update) _nothing ;; import) _wanted files expl file _files && ret=0 ;; install|pkg-(content|descr|build-defs)|provides|requires|show(|-full|-rev)-deps|show-pkg-category) _wanted packages expl package compadd - \ ${${(f)"$(_call_program packages $pkgin avail)"}%%-[^- ]# *} && ret=0 ;; keep) _wanted packages expl package compadd - \ ${${(f)"$(_call_program packages $pkgin show-no-keep)"}%%-[^- ]# *} && ret=0 ;; remove) _wanted packages expl package compadd - \ ${${(f)"$(_call_program packages $pkgin list)"}%%-[^- ]# *} && ret=0 ;; search) _message -e patterns pattern ;; show-category) _wanted -x categories expl category compadd - /usr/pkgsrc/*~*/CVS(N/:t) && ret=0 ;; unkeep) _wanted packages expl package compadd - \ ${${(f)"$(_call_program packages $pkgin show-keep)"}%%-[^- ]# *} && ret=0 ;; *) _default && ret=0 ;; esac fi return ret
Close