Convert shell environment variables to Postman format when importing cURL

Let’s say I have some curl command. Depending on the environment it should use different set of values defined in the shell (bash) variables, e.g.:

curl --location --request GET "https://${TEST_STAND_HOST}/test" --header "Authorization: Bearer $AUTH_TOKEN"

This command works fine in the terminal, but Postman uses a different syntax for variables, so I have to manually replace ${foo} and $bar with {{foo}} and {{bar}} when importing it to Postman. Is there any convenient way to automatically replace the format?