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:
@@ -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
|
||||
|
Reference in New Issue
Block a user