1
0
mirror of https://github.com/minimaxir/big-list-of-naughty-strings.git synced 2025-09-03 02:42:36 +02:00

Rename variable for clarity

This commit is contained in:
Victor Engmark
2018-11-17 07:07:07 +13:00
parent e974868c76
commit 6bcf08beb1

View File

@@ -1,11 +1,11 @@
commentChar="#"
while read p
while read line
do
firstChar=${p:0:1}
firstChar="${line:0:1}"
if [[ "$firstChar" != "$commentChar" ]] && [[ -n "$firstChar" ]]
then
echo -n $p | base64
echo -n $line | base64
else
echo $p
echo $line
fi
done <blns.txt