*: Convert tabulators to whitespaces in bash scripts.

Execution of `./scripts/fix.sh` that executed:
```
find ./ -name '*.sh' | xargs sed --follow-symlinks -i 's|\t|  |g'
```
This commit is contained in:
Piotr Tabor
2020-10-26 10:42:25 +01:00
parent c035df5317
commit 0ba16d8ee1
19 changed files with 262 additions and 262 deletions

View File

@@ -3,8 +3,8 @@ while read line
do
LEN=$(echo ${#line})
if [ $LEN -ge 20 ]; then
echo "OK|$line" | tr 1234567890 abcdefghij
echo "OK|$line" | tr 1234567890 abcdefghij
else
echo "ERROR|$line" | tr 1234567890 abcdefghij
echo "ERROR|$line" | tr 1234567890 abcdefghij
fi
done < "${1:-/dev/stdin}"