Crates.io | shelf-cli |
lib.rs | shelf-cli |
version | 0.1.53 |
source | src |
created_at | 2024-10-25 04:53:34.881419 |
updated_at | 2024-10-28 13:40:58.265889 |
description | Your personal CLI bookshelf for storing and recalling useful commands. |
homepage | |
repository | https://github.com/maytees/shelf |
max_upload_size | |
id | 1422076 |
size | 66,224 |
Your personal CLI bookshelf for storing and recalling useful commands. Shelf allows you to store commands in their respective collections, created by you.
No more "I know I used this command last month, but what was it again?" moments
View the crates.io page here
Requirements:
Install the shelf
binary:
cargo install shelf-cli
The install might give you a warning:
Be sure to add /path/to/.cargo/bin
(it will tell you) to your PATH to be able to run the installed binaries.
Requirements:
git clone https://github.com/maytees/shelf
cargo build
This will store a command to the global collection.
shelf stack -d "Prints out HOME env var" echo $HOME
To stack a command with tags, specifiy with the -t flag.
shelf stack -d "Builds a NextJS Project" -t nextjs,npx,npm npx next build
By default, this will act similar to shell history, and print out saved commands in order.
Use the --verbose
flag to display the command description, and tags
in addition to just the id and command
shelf list
-v, --verbose In addition to ID, and command, display tags, and description
-r, --reverse Reverse the order of the listed commands
-l, --limit <LIMIT> Limit the order of the listed commands
[!TIP] If a command is saved with an environment variable, the variable will be evaluated when you run the command. If you wish to evaluate the variable when you stack the command, use your shell's method of entering variables as plain strings. For example in zsh you add a
\
before the variable:\$HOME
.
Currently, there are two ways to fetch commands in shelf:
To run a command, first find the id
of the command via shelf list
shelf run <ID>
Copying to clipboard may not seem all that useful right now, but it may come in handy someday, so it's there for you to use.. :)
shelf run -c <ID>
You are able to fuzzy search commands to either run them or copy them.
shelf fuzz
shelf fuzz -c
The configuration for shelf is currently very limited. Here is what is configurable at the moment:
Automatically outputs verbose list of commands (default: false)
auto_verbose = false