8 lines
128 B
Plaintext
8 lines
128 B
Plaintext
|
#!/bin/bash
|
||
|
if [[ $1 == '' ]]; then
|
||
|
echo 'E| nothing to add?'
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
docker exec yacynet /scripts/blacklist-add.sh "$1" 1
|