about summary refs log tree commit diff stats
path: root/tests/infrastructure/clean.awk
blob: 1208b1efca1637efc31b89f145e89ac4a741ba18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
    # Shell like comments
    gsub(/^#.*$/, "", $0)

    # Strip leading and trailing white space
    gsub(/^[[:blank:]]*/, "", $0)
    gsub(/[[:blank:]]*$/, "", $0)

    # Only accept the line, if it contains something
    if (NF) {
        print $0
    }
}