English ▾
Localized versions of git-sh-i18n--envsubst manual
Topics ▾
Email
Latest version
▾
git-sh-i18n--envsubst last updated in 2.0.5
Changes in the git-sh-i18n--envsubst manual
Setup and Config
Getting and Creating Projects
Basic Snapshotting
Branching and Merging
Sharing and Updating Projects
Inspection and Comparison
Patching
Debugging
External Systems
Server Admin
Guides
- gitattributes
- Command-line interface conventions
- Everyday Git
- Frequently Asked Questions (FAQ)
- Glossary
- Hooks
- gitignore
- gitmodules
- Revisions
- Submodules
- Tutorial
- Workflows
- All guides...
Administration
Plumbing Commands
- 2.1.4 → 2.47.0 no changes
- 2.0.5 12/17/14
SYNOPSIS
eval_gettext () { printf "%s" "$1" | ( export PATH $(git sh-i18n--envsubst --variables "$1"); git sh-i18n--envsubst "$1" ) }
DESCRIPTION
This is not a command the end user would want to run. Ever. This documentation is meant for people who are studying the plumbing scripts and/or are writing new ones.
git sh-i18n--envsubst is Git’s stripped-down copy of the GNU
envsubst(1)
program that comes with the GNU gettext package. It’s
used internally by git-sh-i18n[1] to interpolate the variables
passed to the eval_gettext
function.
No promises are made about the interface, or that this program won’t disappear without warning in the next version of Git. Don’t use it.
GIT
Part of the git[1] suite