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