11 lines
96 B
Bash
Executable File
11 lines
96 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "Applying blacklist..."
|
|
cd src
|
|
while read bl
|
|
do
|
|
echo $bl
|
|
rm -r $bl
|
|
done
|
|
cd ..
|