Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 457 Bytes

File metadata and controls

30 lines (19 loc) · 457 Bytes

Universal command executor

A lightweight tool for creating proxy executables and command aliases

How to use

Compile app

cargo build -r

Copy executable file target/release/uce.exe to a directory of your choice

Example: Run Docker via WSL

Rename uce.exe to docker.exe

Create config file docker.uce.toml

executable = "wsl"
args = ["-d", "arch", "docker"]

Now you can run Docker via WSL

docker ps