Notes

2014-09-02

Here is a simple Awk program to check that your files respect the religious constraint of 80 characters per line.

{
        gsub(/\t/, "        ");
        if (length($0) > 80)
                printf("%d: %s\n", NR, $0);
}