diff options
author | EuAndreh <eu@euandre.org> | 2022-11-14 18:39:14 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-11-14 18:39:14 -0300 |
commit | b20df02100b4806c1a9e1992aff240b4328b7d16 (patch) | |
tree | e14fd3029e8c1f8d3f78f50f28ced7a28a153da9 /aux/80-columns.sh | |
parent | Remove old config files, starting anew for toph (diff) | |
download | toph-b20df02100b4806c1a9e1992aff240b4328b7d16.tar.gz toph-b20df02100b4806c1a9e1992aff240b4328b7d16.tar.xz |
rm -rf aux/
Diffstat (limited to 'aux/80-columns.sh')
-rwxr-xr-x | aux/80-columns.sh | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/aux/80-columns.sh b/aux/80-columns.sh deleted file mode 100755 index ae4660e..0000000 --- a/aux/80-columns.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/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 |