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.
|
#!/usr/bin/awk -f |
|
|
|
BEGIN { |
|
max = 100; |
|
} |
|
|
|
# Expand tabs to 4 spaces. |
|
{ |
|
gsub(/\t/, " "); |
|
} |
|
|
|
length() > max { |
|
errors++; |
|
print FILENAME ":" FNR ": Line too long (" length() "/" max ")"; |
|
} |
|
|
|
END { |
|
if (errors >= 125) { |
|
errors = 125; |
|
} |
|
exit errors; |
|
}
|
|
|