8 lines
119 B
Bash
Executable File
8 lines
119 B
Bash
Executable File
if [ -z "$1" ]; then
|
|
echo "Usage: $0 <domain>"
|
|
echo "Example: $0 example.com"
|
|
exit 1
|
|
fi
|
|
|
|
subfinder -silent -d $1
|