diff options
author | EuAndreh <eu@euandre.org> | 2023-04-14 09:33:56 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-04-14 09:33:56 -0300 |
commit | e90d6bc34fdf8f590c92ffecacfc90cc3885611e (patch) | |
tree | 4c24dc9c4fdf72ed087c9e3e311479d13d9a667e /aux/80-columns.sh | |
parent | TODOs.md: Add #task-1554614f-2e33-616d-d021-70828dbf0381 (diff) | |
download | gistatic-e90d6bc34fdf8f590c92ffecacfc90cc3885611e.tar.gz gistatic-e90d6bc34fdf8f590c92ffecacfc90cc3885611e.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 |