0xV3NOMx
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



Your IP : 3.133.148.130


Current Path : /proc/thread-self/root/usr/share/doc/gawk/examples/misc/
Upload File :
Current File : //proc/thread-self/root/usr/share/doc/gawk/examples/misc/findpat.awk

{
    if ($1 == "FIND")
        regex = $2
    else {
        where = match($0, regex)
        if (where != 0)
            print "Match of", regex, "found at", where, "in", $0
       }
}