filters: Add missing shebangs
The hldiff and plaintext filter scripts are missing their shebangs. Add those to be correct and consistent. Additionally, remove the vim comment, it's unnecessary. Signed-off-by: Tom Schwindl <schwindl@posteo.de> Acked-by: Moritz Poldrack <moritz@poldrack.dev>
This commit is contained in:
parent
2eff25e3ea
commit
fc4301113e
2 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,5 @@
|
||||||
# vim: set ft=awk :
|
#!/usr/bin/awk -f
|
||||||
|
|
||||||
BEGIN {
|
BEGIN {
|
||||||
bright = "\x1B[1m"
|
bright = "\x1B[1m"
|
||||||
red = "\x1B[31m"
|
red = "\x1B[31m"
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
# vim: set ft=awk :
|
#!/usr/bin/awk -f
|
||||||
|
|
||||||
BEGIN {
|
BEGIN {
|
||||||
dim = "\x1B[2m"
|
dim = "\x1B[2m"
|
||||||
cyan = "\x1B[36m"
|
cyan = "\x1B[36m"
|
||||||
|
|
Loading…
Reference in a new issue