mirror of
https://github.com/minimaxir/big-list-of-naughty-strings.git
synced 2025-09-25 05:12:14 +02:00
10 lines
197 B
Bash
Executable File
10 lines
197 B
Bash
Executable File
commentChar="#"
|
|
while read p; do
|
|
firstChar=${p:0:1}
|
|
if [[ "$firstChar" != "$commentChar" && "$firstChar" != "" ]] ; then
|
|
echo -n $p | base64;
|
|
else
|
|
echo $p;
|
|
fi
|
|
done <blns.txt
|