https://github.com/moisutsu/exeat
Rustによる別ディレクトリでコマンドを実行するCUIツール
https://github.com/moisutsu/exeat
cui-tool rust
Last synced: 11 months ago
JSON representation
Rustによる別ディレクトリでコマンドを実行するCUIツール
- Host: GitHub
- URL: https://github.com/moisutsu/exeat
- Owner: moisutsu
- Created: 2020-01-02T07:19:35.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-02T09:08:36.000Z (over 6 years ago)
- Last Synced: 2025-01-12T22:30:52.794Z (over 1 year ago)
- Topics: cui-tool, rust
- Language: Rust
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Exeat
Rustで書かれたコマンドラインツールです.カレントディレクトリから `cd` することなく別ディレクトリにいるかのようにコマンドを実行することができます.
## 実行方法
Cargoが入っている環境でこのコマンドでPathのディレクトリにいるかのようにCommandをargsのオプション付きで実行できます.
```bash
cargo run (..)
```
またこのコマンドでバイナリファイルを作成してパスを通すことで
```bash
cargo build --release
```
このように実行できるようになるのでおすすめです.
```bash
exeat (..)
```