From 651bb5b3fb3a9b36599e1891efb22efb4bf34c3f Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sun, 15 Aug 2021 17:31:16 -0300 Subject: aux/: Update --- aux/80-columns.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 aux/80-columns.sh (limited to 'aux/80-columns.sh') diff --git a/aux/80-columns.sh b/aux/80-columns.sh new file mode 100755 index 0000000..ae4660e --- /dev/null +++ b/aux/80-columns.sh @@ -0,0 +1,12 @@ +#!/bin/sh +set -eu + +# shellcheck disable=2068 +for f in ${@:-$(cat -)}; do + if [ "$(file -i "$f" | cut -d' ' -f2 | cut -d/ -f1)" = 'text' ]; then + sed 's/\t/ /g' "$f" | + awk -v FNAME="$f" 'length > 80 { + printf "%s:%s:%s\n", FNAME, NR, $0 + }' + fi +done -- cgit v1.2.3