parsed in your head:
curl http://<SERVER>/<PATH>
setting up shell variables:
export SERVER=xyz.example
export PATH='/foo/bar'
curl http://${SERVER}/${PATH}
SERVER=xyz.example \
PATH='/foo/bar' \
curl http://${SERVER}/${PATH}
#!/bin/bash | |
export SERVER=xyz.example | |
export PATH='/foo/bar' | |
curl http://${SERVER}/${PATH} |
parsed in your head:
curl http://<SERVER>/<PATH>
setting up shell variables:
export SERVER=xyz.example
export PATH='/foo/bar'
curl http://${SERVER}/${PATH}
SERVER=xyz.example \
PATH='/foo/bar' \
curl http://${SERVER}/${PATH}