9 lines
110 B
Bash
Executable file
9 lines
110 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
domain="$1"
|
|
|
|
if [ -z "$domain" ];
|
|
echo "You need to give a domain or ip address"
|
|
fi
|
|
|
|
if
|