You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
283 B
8 lines
283 B
BEGIN {FS = ","; chk = "chktrust -"}
|
|
$1 ~ /\.[Cc][Aa][Bb]/ { print chk "C", $1; next}
|
|
$1 ~ /\.[Ee][Xx][Ee]/ { print chk "I", $1; next}
|
|
$1 ~ /\.[Oo][Cc][Xx]/ { print chk "I", $1; next}
|
|
$1 ~ /\.[Dd][Ll][Ll]/ { print chk "I", $1; next}
|
|
{
|
|
print "ERROR - Unknown file type"
|
|
}
|