https://github.com/gomodules/venv
https://github.com/gomodules/venv
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gomodules/venv
- Owner: gomodules
- License: apache-2.0
- Created: 2025-03-06T13:07:04.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-08-15T04:54:19.000Z (10 months ago)
- Last Synced: 2025-10-24T21:29:10.254Z (8 months ago)
- Language: Makefile
- Size: 33.2 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# venv
```bash
$ mkdir /tmp/virtual-secrets
$ echo "x1" > /tmp/virtual-secrets/var1
$ export VAR1=vs:///tmp/virtual-secrets/var1
$ echo "x2" > /tmp/virtual-secrets/var2
$ export VAR2=vs:///tmp/virtual-secrets/var2
$ go run main.go sh -c "echo VAR1=\$VAR1 VAR2=\$VAR2"
VAR1=x1 VAR2=x2
```