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 /
Misc /
[ HOME SHELL ]
Name
Size
Permission
Action
bash2zshprompt
1.97
KB
-rw-r--r--
c2z
3.77
KB
-rwxr-xr-x
compctl-examples
28.94
KB
-rw-r--r--
globtests
6.34
KB
-rwxr-xr-x
globtests.ksh
2.9
KB
-rwxr-xr-x
job-control-tests
1.14
KB
-rw-r--r--
lete2ctl
10.1
KB
-rwxr-xr-x
make-zsh-urls
4.15
KB
-rw-r--r--
vcs_info-examples
23.17
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : job-control-tests
# These are some tests for the job control code. The code chunks # have to be run interactively. Some use files in the zsh distribution. # Try # ^Z # fg if true; then cat Src/builtin.c | less; fi # Try # ^Z # fg fn() { if true; then cat Src/builtin.c | less; fi } fn # Try # ^Z # fg # ^C # then # ^Z # bg # kill while true; do sed -e 's/foo/bar/' Src/builtin.c >/dev/null; done # Try # ^C # ignoring the error messages from sed. # ^Z is more of a problem since you have to catch the sed. while true; do sed -e 's/foo/bar/' non-existent-file >/dev/null; done # Try # ^Z # fg # ^Z # fg fn() { local a while read a; do :; done less "$@" } cat foo | fn bar # Try # ^Z # fg fn() { cat builtin.c } fn | while read a; do :; done # Try # ^Z # fg # q # ^Z # fg # q fn() { less builtin.c echo done } x=2; while (( x-- )); do f; done # Try # ^C # This won't work because zcat doesn't tell us that it received a signal. # But # ^Z # fg # ^C (probably a second ^C is needed: if the continued zcat is still running) # works. # (See also the file Etc/BUGS) while true; do zcat foo.gz > /dev/null; done
Close