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 /
Darwin /
[ HOME SHELL ]
Name
Size
Permission
Action
_caffeinate
395
B
-rw-r--r--
_defaults
1.69
KB
-rw-r--r--
_fink
5.27
KB
-rw-r--r--
_fs_usage
933
B
-rw-r--r--
_hdiutil
22.02
KB
-rw-r--r--
_mac_applications
136
B
-rw-r--r--
_mac_files_for_application
1.96
KB
-rw-r--r--
_mdfind
991
B
-rw-r--r--
_mdls
464
B
-rw-r--r--
_mdutil
723
B
-rw-r--r--
_networksetup
13.84
KB
-rw-r--r--
_nvram
810
B
-rw-r--r--
_open
2.73
KB
-rw-r--r--
_osascript
967
B
-rw-r--r--
_otool
2.18
KB
-rw-r--r--
_pbcopy
615
B
-rw-r--r--
_plutil
1.86
KB
-rw-r--r--
_qtplay
525
B
-rw-r--r--
_retrieve_mac_apps
3.23
KB
-rw-r--r--
_say
2.99
KB
-rw-r--r--
_sc_usage
425
B
-rw-r--r--
_scselect
945
B
-rw-r--r--
_scutil
1.96
KB
-rw-r--r--
_softwareupdate
2.28
KB
-rw-r--r--
_sw_vers
186
B
-rw-r--r--
_system_profiler
1.28
KB
-rw-r--r--
_trash
855
B
-rw-r--r--
_xcode-select
460
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : _say
#compdef say local ret=1 local -a context line state state_descr tmp local -A opt_args val_args _arguments -s -S : \ '(-a --audio-device)'{-a+,--audio-device=}'[specify audio device]: :->devices' \ '--bit-rate=[specify bit rate]: :->bit-rates' \ '--channels=[specify number of channels]:number of channels' \ '--data-format=[specify output data format]: :->data-formats' \ '(: -f --input-file)'{-f+,--input-file=}'[specify input file]:input file:_files' \ '--file-format=[specify output file format]: :->file-formats' \ '(-i --interactive)-i[display/highlight text as it is spoken]' \ '(-i --interactive)--interactive=[display/highlight text as it is spoken]:: :->markups' \ '(-o --output-file)'{-o+,--output-file=}'[specify output file]:output file:_files' \ '(-n --network-send)'{-n+,--network-send=}'[specify network service/port]:network service/port' \ '--progress[display progress meter]' \ '--quality=[specify converter quality level]:quality level (0-127)' \ '(-r --rate)'{-r+,--rate=}'[specify speech rate]:speech rate (words per minute)' \ '(-v --voice)'{-v+,--voice=}'[specify voice]: :->voices' \ '(-f)*: :_guard "^-*" "text to speak"' \ && ret=0 case $state in bit-rates) # A file format must have already been provided in order to complete these; # also, not every file format supports bit-rate values (( $+opt_args[--file-format] )) && { tmp=( ${(f)"$( _call_program bit-rates $words[1] \ --file-format=${opt_args[--file-format]##*:} \ --bit-rate='\?' )"} ) tmp=( ${tmp//[[:space:]]##/} ) } if (( $#tmp )); then _values 'bit rate' $tmp && ret=0 else _message 'bit rate' && ret=0 fi ;; data-formats) # A file format must have already been provided in order to complete these if (( ! $+opt_args[--file-format] )); then _message 'data format' && ret=0 else tmp=( ${(f)"$( _call_program data-formats $words[1] \ --file-format=${opt_args[--file-format]##*:} \ --data-format='\?' )"} ) tmp=( ${tmp//:/\\:} ) tmp=( ${^tmp/[[:space:]]##/[}\] ) _values 'data format' $tmp && ret=0 fi ;; devices) tmp=( ${(f)"$( _call_program devices $words[1] -a '\?' )"} ) tmp=( ${tmp##[[:space:]]#[0-9]##[[:space:]]##} ) tmp=( ${tmp//:/\\:} ) _values 'audio device name or ID' $tmp && ret=0 ;; file-formats) tmp=( ${(f)"$( _call_program file-formats $words[1] --file-format='\?' )"} ) tmp=( ${tmp%%[[:space:]]##\(.*} ) tmp=( ${tmp//:/\\:} ) tmp=( ${^tmp/[[:space:]]##/[}\] ) _values 'file format' $tmp && ret=0 ;; markups) tmp=( bold smso smul ${(k)terminfo} ) _alternative \ 'colors:color:(black red green yellow blue magenta cyan white)' \ "capabilities:terminfo capability:( ${(j< >)tmp} )" \ && ret=0 ;; voices) tmp=( ${(f)"$( _call_program voices $words[1] -v '\?' )"} ) tmp=( ${tmp%%[[:space:]](#c2,)*} ) _values voice $tmp && ret=0 ;; esac return ret
Close