The binary is named gpt
when installed, not shell-gpt
.
bash
cargo install shell-gpt
gpt --help
bash
git clone git@github.com:rigwild/shell-gpt-rs.git
cd shell-gpt-rs
cargo install --path .
On first usage, ShellGPT will prompt you to enter your OpenAI API key.
This key will then be saved to ~/.config/shell-gpt-rs
, encrypted with ChaCha20-Poly1305
, to be reused later.
Ask any question to ChatGPT.
bash
gpt <any question>
--script
Ask ChatGPT to create a script, then run it if you want to. A pre-prompt will be included with your request.
```bash gpt --shell show me the 10 biggest files in the current tree Asking ChatGPT...
du -ah | sort -rh | head -n 10
Do you want to run this script? (y/N) y
Executing script...
4.1G ./target 4.1G . 3.5G ./target/debug 2.9G ./target/debug/deps 588M ./target/release 488M ./target/release/deps 387M ./target/debug/build 241M ./target/debug/incremental 98M ./target/release/build 86M ./target/debug/deps/gpt-54b56efa1b0d0573 ```
--raw
Ask ChatGPT to create a script, but do not show a loading spinner or interactive prompt, does not run the script.
This can be used to pipe the script to another command.
bash
gpt --shell --raw show me the 10 biggest files in the current tree
du -ah | sort -rh | head -n 10
--clear-config
Remove local config, including the OpenAI API key at ~/.config/shell-gpt-rs
.
bash
gpt --clear-config
bash
gpt --help
``` Ask ChatGPT for a shell script, code, or anything, directly from your terminal 🤖🧠👨💻
Usage: gpt
Options:
-s --shell Ask ChatGPT for a shell script [boolean=false]
--raw Only output the script, no spinner or interactive prompt [boolean=false]
--clear-config Remove local config, including the OpenAI API key at ~/.config/shell-gpt-rs
[boolean]
-h, --help Show help [boolean]
Examples: gpt is the earth flat? gpt --shell show the list of files in the current directory with human-readable file size gpt -s find the top 10 biggest files in the current directory gpt -s find the top 10 biggest files in the current tree recursive gpt --raw --shell find the top 10 biggest files in the current tree recursive gpt --raw --shell find the top 10 biggest files in the current tree recursive > 10biggestfiles.sh gpt --raw tell me a good joke | curl -X POST -d @- https://example.com/api/jokes
shell-gpt-rs - https://github.com/rigwild/shell-gpt-rs ```
```bash gpt How to install a package in Arch Linux? gpt How to create a Rust crate? gpt --shell show the list of files in the current directory with human-readable file size gpt -s find the top 10 biggest files in the current tree recursive
gpt --raw --shell find the top 10 biggest files in the current tree recursive > 10biggestfiles.sh
gpt --raw tell me a good joke | curl -X POST -d @- https://example.com/api/jokes ```
The MIT license