Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.148.115.187
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
snap /
core /
17200 /
usr /
share /
awk /
[ HOME SHELL ]
Name
Size
Permission
Action
assert.awk
383
B
-rw-r--r--
bits2str.awk
330
B
-rw-r--r--
cliff_rand.awk
307
B
-rw-r--r--
ctime.awk
234
B
-rw-r--r--
ftrans.awk
315
B
-rw-r--r--
getopt.awk
2.15
KB
-rw-r--r--
gettime.awk
2.43
KB
-rw-r--r--
group.awk
1.74
KB
-rw-r--r--
inplace.awk
573
B
-rw-r--r--
join.awk
378
B
-rw-r--r--
libintl.awk
238
B
-rw-r--r--
noassign.awk
422
B
-rw-r--r--
ord.awk
937
B
-rw-r--r--
passwd.awk
1.18
KB
-rw-r--r--
processarray.awk
355
B
-rw-r--r--
quicksort.awk
1.01
KB
-rw-r--r--
readable.awk
489
B
-rw-r--r--
readfile.awk
267
B
-rw-r--r--
rewind.awk
404
B
-rw-r--r--
round.awk
661
B
-rw-r--r--
shellquote.awk
472
B
-rw-r--r--
strtonum.awk
1.42
KB
-rw-r--r--
walkarray.awk
214
B
-rw-r--r--
zerofile.awk
424
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : round.awk
# round.awk --- do normal rounding # # Arnold Robbins, arnold@skeeve.com, Public Domain # August, 1996 function round(x, ival, aval, fraction) { ival = int(x) # integer part, int() truncates # see if fractional part if (ival == x) # no fraction return ival # ensure no decimals if (x < 0) { aval = -x # absolute value ival = int(aval) fraction = aval - ival if (fraction >= .5) return int(x) - 1 # -2.5 --> -3 else return int(x) # -2.3 --> -2 } else { fraction = x - ival if (fraction >= .5) return ival + 1 else return ival } }
Close