Shell Script Example to Add Multiple FQDNs
- Last Updated: August 5, 2025
- 1 minute read
- LoadMaster
- LoadMaster GA
- Documentation
The following example adds multiple FQDNs:
for var in "${@:4}"do curl -k "https://$2:$3@$1/access/addfqdn?fqdn=$var"done