Your IP : 3.143.203.223


Current Path : /usr/share/tools/
Upload File :
Current File : //usr/share/tools/trim26lst

#! /usr/bin/awk -f

# $Progeny$

BEGIN {
    FS = "\t";
}

/^[^\t]/ {
    print $0;
}

/^\t/ && $3 !~ /(video)/ && $4 !~ /(unknown|ignore)/ { 
    print $0;
}