├── .crystal.bat.swp ├── .gitignore ├── .scry.out ├── CONTRIBUTING.md ├── LICENSE ├── PROXIES.md ├── README.md ├── cabal.bat ├── cargo.bat ├── clangd.bat ├── clj.bat ├── clojure.bat ├── cmake.bat ├── composer.bat ├── crystal.bat ├── docker.bat ├── ghc-mod.bat ├── ghc.bat ├── ghci.bat ├── git.bat ├── icr.bat ├── java.bat ├── lein.bat ├── n.bat ├── node.bat ├── npm.bat ├── php-cs-fixer.bat ├── php.bat ├── phpcs-composer.bat ├── phpcs.bat ├── phpcs.phar.bat ├── proxygen.cmd ├── proxygen.sh ├── python-config.bat ├── python.bat ├── racer.bat ├── rust-gdb.bat ├── rust-lldb.bat ├── rustc.bat ├── rustdoc.bat ├── rustfmt.bat ├── rustsym.bat ├── rustup.bat ├── scry.bat ├── shards.bat └── yarn.bat /.crystal.bat.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watzon/wsl-proxy/HEAD/.crystal.bat.swp -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /autogen 2 | -------------------------------------------------------------------------------- /.scry.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watzon/wsl-proxy/HEAD/.scry.out -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watzon/wsl-proxy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watzon/wsl-proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /PROXIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watzon/wsl-proxy/HEAD/PROXIES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watzon/wsl-proxy/HEAD/README.md -------------------------------------------------------------------------------- /cabal.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "cabal %*" 3 | -------------------------------------------------------------------------------- /cargo.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "cargo %*" 3 | -------------------------------------------------------------------------------- /clangd.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "clangd %*" -------------------------------------------------------------------------------- /clj.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "clj %*" 3 | -------------------------------------------------------------------------------- /clojure.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "clojure %*" 3 | -------------------------------------------------------------------------------- /cmake.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "cmake %*" -------------------------------------------------------------------------------- /composer.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "composer %*" 3 | -------------------------------------------------------------------------------- /crystal.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "crystal %*" 3 | -------------------------------------------------------------------------------- /docker.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "docker %*" 3 | -------------------------------------------------------------------------------- /ghc-mod.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "ghc-mod %*" 3 | -------------------------------------------------------------------------------- /ghc.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "ghc %*" 3 | -------------------------------------------------------------------------------- /ghci.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "ghci %*" 3 | -------------------------------------------------------------------------------- /git.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "git %*" 3 | -------------------------------------------------------------------------------- /icr.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "icr %*" 3 | -------------------------------------------------------------------------------- /java.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "java %*" 3 | -------------------------------------------------------------------------------- /lein.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "lein %*" 3 | -------------------------------------------------------------------------------- /n.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "n %*" 3 | -------------------------------------------------------------------------------- /node.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "node %*" 3 | -------------------------------------------------------------------------------- /npm.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "npm %*" 3 | -------------------------------------------------------------------------------- /php-cs-fixer.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "php-cs-fixer %*" 3 | -------------------------------------------------------------------------------- /php.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "php %*" 3 | -------------------------------------------------------------------------------- /phpcs-composer.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "~/.composer/vendor/bin/phpcs %*" 3 | -------------------------------------------------------------------------------- /phpcs.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "phpcs %*" 3 | -------------------------------------------------------------------------------- /phpcs.phar.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "php phpcs.phar %*" 3 | -------------------------------------------------------------------------------- /proxygen.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watzon/wsl-proxy/HEAD/proxygen.cmd -------------------------------------------------------------------------------- /proxygen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/watzon/wsl-proxy/HEAD/proxygen.sh -------------------------------------------------------------------------------- /python-config.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "python-config %*" 3 | -------------------------------------------------------------------------------- /python.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "python %*" 3 | -------------------------------------------------------------------------------- /racer.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "racer %*" 3 | -------------------------------------------------------------------------------- /rust-gdb.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "rust-gdb %*" 3 | -------------------------------------------------------------------------------- /rust-lldb.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "rust-lldb %*" 3 | -------------------------------------------------------------------------------- /rustc.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "rustc %*" 3 | -------------------------------------------------------------------------------- /rustdoc.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "rustdoc %*" 3 | -------------------------------------------------------------------------------- /rustfmt.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "rustfmt %*" 3 | -------------------------------------------------------------------------------- /rustsym.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "rustsym %*" 3 | -------------------------------------------------------------------------------- /rustup.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "/home/$USER/.cargo/bin/rustup %*" 3 | -------------------------------------------------------------------------------- /scry.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "scry %*" 3 | -------------------------------------------------------------------------------- /shards.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "shards %*" 3 | -------------------------------------------------------------------------------- /yarn.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bash.exe -c "yarn %*" 3 | --------------------------------------------------------------------------------