Fix shellcheck warnings

This commit is contained in:
Christian Muck 2022-05-06 20:43:46 +02:00
parent cc9d950601
commit 0f9934b0f9
4 changed files with 4 additions and 4 deletions

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bash
for f in $@; do
for f in "$@"; do
# Non UTF-8 bytes
echo -e '\x01\x97' > "$f"
echo "Modified: $f!"

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bash
for f in $@; do
for f in "$@"; do
# Non UTF-8 bytes
echo -e '\x01\x97' > "$f"
done