You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you so much for this project, the -no-unset option was exactly what I was looking for, I've immediately replaced our usage of gettext with it.
Now that I'm a user, would it be possible for envsubst to replace all strings $$foo with $foo?
In my case, I have kubernetes templates for nginx configuration, which I template with some values, but which also contain nginx variables like $remote_user and $bytes_sent strings. My current choices are either to not use -no-unset, or (what I actually do) implement my own escaping with sed.
The text was updated successfully, but these errors were encountered:
Thank you so much for this project, the
-no-unset
option was exactly what I was looking for, I've immediately replaced our usage of gettext with it.Now that I'm a user, would it be possible for envsubst to replace all strings
$$foo
with$foo
?In my case, I have kubernetes templates for nginx configuration, which I template with some values, but which also contain nginx variables like
$remote_user
and$bytes_sent
strings. My current choices are either to not use-no-unset
, or (what I actually do) implement my own escaping with sed.The text was updated successfully, but these errors were encountered: