A bin folder, holding helpfull scripts and commands
選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
12345678910 |
- #!/bin/bash
- #
- IP=`wget -O - stdout http://pdns.mount-mockery.de 2> /dev/null|jq .$1`
- if [[ "$IP" = "null" ]]; then
- echo No IP found for host $1.
- exit 1
- else
- echo $IP
- fi
|