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 /
Misc /
[ HOME SHELL ]
Name
Size
Permission
Action
add-zle-hook-widget
5.25
KB
-rw-r--r--
add-zsh-hook
1.9
KB
-rw-r--r--
allopt
783
B
-rw-r--r--
checkmail
817
B
-rwxr-xr-x
colors
3.34
KB
-rw-r--r--
getjobs
827
B
-rw-r--r--
harden
96
B
-rwxr-xr-x
is-at-least
2.23
KB
-rw-r--r--
mere
2.02
KB
-rw-r--r--
nslookup
1.11
KB
-rw-r--r--
promptnl
3.23
KB
-rw-r--r--
regexp-replace
1.01
KB
-rw-r--r--
relative
888
B
-rw-r--r--
run-help
3
KB
-rwxr-xr-x
run-help-git
144
B
-rw-r--r--
run-help-ip
862
B
-rwxr-xr-x
run-help-openssl
59
B
-rw-r--r--
run-help-p4
78
B
-rw-r--r--
run-help-sudo
56
B
-rw-r--r--
run-help-svk
52
B
-rw-r--r--
run-help-svn
52
B
-rw-r--r--
sticky-note
4.59
KB
-rwxr-xr-x
tetris
5.31
KB
-rw-r--r--
tetriscurses
10.76
KB
-rw-r--r--
xtermctl
4.09
KB
-rw-r--r--
zargs
8.73
KB
-rw-r--r--
zcalc
11.92
KB
-rwxr-xr-x
zed
4
KB
-rwxr-xr-x
zkbd
7.12
KB
-rwxr-xr-x
zmathfuncdef
2.23
KB
-rw-r--r--
zmv
11.14
KB
-rw-r--r--
zrecompile
6.04
KB
-rw-r--r--
zstyle+
1.24
KB
-rw-r--r--
ztodo
1.37
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ztodo
# vim: set ft=zsh et sw=2 sts=2: emulate -L zsh setopt no_sh_word_split null_glob no_ksh_arrays typeset -gHA __ztodolist typeset -gH __ztodolastwrite local cachefile short_format list_format local tmp needupdate=0 local -a todos zstyle -s ':ztodo:*' cache-file cachefile || cachefile="~/.ztodolist" zstyle -s ':ztodo:*' short-format short_format || short_format="You have %n thing%1(n..s) to do here." zstyle -s ':ztodo:*' list-format list_format || list_format="%-2n: %e" tmp=(${~tmp::=$cachefile(ms-$(( ${(%)tmp::="%D{%s}"} - ${__ztodolastwrite:-0} )))}) (( $#tmp )) && . $~cachefile todos=( ${(ps:\0:)__ztodolist[$PWD]} ) if (( $# )); then case "$1" in (add) shift todos=( $todos "$*" ) needupdate=1 ;; (del) shift todos[$1]=() needupdate=1 ;; (clear) shift todos=() needupdate=1 ;; (list) shift local i for (( i = 1; i <= $#todos; i++ )); do zformat -f tmp $list_format n:$i e:"${todos[$i]//\%/%%}" print -P "$tmp" done ;; esac else if [[ $#todos -gt 0 ]]; then zformat -f tmp $short_format n:$#todos print -P "$tmp" fi fi (( $#todos )) && __ztodolist[$PWD]=${(pj:\0:)todos} || unset "__ztodolist[$PWD]" (( needupdate )) && print -r "__ztodolist=( ${(kv@qq)^^__ztodolist} )" > ${~cachefile} __ztodolastwrite="${(%)tmp::="%D{%s}"}"
Close