Crates.io | tenv |
lib.rs | tenv |
version | 0.3.0 |
source | src |
created_at | 2022-08-08 00:37:20.379837 |
updated_at | 2022-08-24 19:53:53.157457 |
description | Small CLI for running commands with temporary environment variables |
homepage | |
repository | https://github.com/Hpmason/tenv |
max_upload_size | |
id | 640464 |
size | 35,259 |
Small CLI app for running commands with temporary environment variables. Super useful on Windows/Powershell where you can't easily set temp variables inline with command being run.
Install from http://crates.io via cargo
cargo install --locked tenv
Install from source
cargo install --path .
Supports argfile
s. see example.tenv for an example. Can be used to set up an environment across multiple projects. For instance here's one that sets up a flutter environment:
# Flutter
-p C:\dev\flutter\bin
# Android SDK Locations
-e ANDROID_SDK_ROOT=C:\Users\user1\AppData\Local\Android\Sdk
-e ANDROID_NDK_ROOT=$ANDROID_SDK_ROOT\ndk\25.0.8775105
# Android SDK binaries
-p $ANDROID_SDK_ROOT\tools\bin
-p $ANDROID_SDK_ROOT\emulator
# Spawn bash shell with flutter environment
tenv @flutter.tenv bash
# Spawn new powersehll with flutter environment (Need to escape @ in powershell with `)
tenv `@flutter.tenv powershell
Bash
# Add ~/hugo to PATH and run `hugo` program
tenv -p ~/hugo hugo
Powershell
# Add C:\dev\hugo to PATH and run `hugo` program
tenv -p C:\dev\hugo hugo
Especially useful for RUST_BACKTRACE on Powershell
tenv -e RUST_BACKTRACE=1 "cargo run"
Bash
# spawn new bash shell with env vars APPLES="Red" and BANANAS="Yellow"
tenv -e APPLES=Red -e BANANAS=Yellow bash
Powershell
<# spawn new Powershell with env vars APPLES="Red" and BANANAS="Yellow" #>
tenv -e APPLES=Red -a BANANAS=Yellow powershell
Because some shell commands aren't directly callable from Command::new() (i.e. the cat
alias on Powershell), tenv runs programs directly through powershell on Windows and bash otherwise.