diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-06-07 16:33:18 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-06-07 16:33:18 -0400 |
commit | a6787fa5d1e0f88b35c981593da0190ef3a0b27f (patch) | |
tree | 219af800fcd53c9c2bdffa2e24c55a94a61a1353 /contrib | |
parent | da62f63aad914521d97a565453f3e2f262161666 (diff) |
Use #!/usr/bin/env -S awk -f for awk scripts
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/hldiff | 2 | ||||
-rwxr-xr-x | contrib/plaintext | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/hldiff b/contrib/hldiff index f2bda8d..89aa9a2 100755 --- a/contrib/hldiff +++ b/contrib/hldiff @@ -1,4 +1,4 @@ -#!/bin/awk -f +#!/usr/bin/env -S awk -f BEGIN { bright = "\x1B[1m" red = "\x1B[31m" diff --git a/contrib/plaintext b/contrib/plaintext index 73744cf..1ed97e3 100755 --- a/contrib/plaintext +++ b/contrib/plaintext @@ -1,4 +1,4 @@ -#!/bin/awk -f +#!/usr/bin/env -S awk -f BEGIN { dim = "\x1B[2m" cyan = "\x1B[36m" |