Shell Script Example to Modify the Same Parameter on Multiple Virtual Services
- Last Updated: December 11, 2024
- 1 minute read
- LoadMaster
- LoadMaster LTSF
- Documentation
The following example modifies the same parameter on multiple Virtual Services at the same time.
Note: The Virtual Service index must be used in this case.
for var in "${@:6}"do curl -k "https://$2:$3@$1/access/modvs?vs=$var&$4=$5"done