mirror of
https://github.com/minimaxir/big-list-of-naughty-strings.git
synced 2025-09-03 10:53:01 +02:00
Avoid unnecessary semicolons
This commit is contained in:
@@ -1,9 +1,11 @@
|
||||
commentChar="#"
|
||||
while read p; do
|
||||
while read p
|
||||
do
|
||||
firstChar=${p:0:1}
|
||||
if [[ "$firstChar" != "$commentChar" && "$firstChar" != "" ]] ; then
|
||||
echo -n $p | base64;
|
||||
if [[ "$firstChar" != "$commentChar" && "$firstChar" != "" ]]
|
||||
then
|
||||
echo -n $p | base64
|
||||
else
|
||||
echo $p;
|
||||
echo $p
|
||||
fi
|
||||
done <blns.txt
|
||||
|
Reference in New Issue
Block a user