#!/bin/bash
# prepend line numbers to all lines, starting at 1
# usage: bin/golint | bin/linenumber

set -e -o pipefail

awk '{print NR "\t" $0}'