rustash

Crates.iorustash
lib.rsrustash
version0.3.1
sourcesrc
created_at2024-09-03 13:39:30.951844
updated_at2024-09-13 13:03:33.45415
descriptiona simple CLI tool to manage your notes
homepage
repository
max_upload_size
id1361653
size12,965
Dennis Chan (dennyjj)

documentation

README

rustash

a simple CLI tool to manage your notes

install

cargo install rustash

usage

add note
> rustash add hello
> rustash add world
list note
> rustash list
0) hello
1) world
show note by index
# show first note by default if no index provided
> rustash show
0) hello

> rustash show 1
1) world

remove note by index

> rustash remove 1
> rustash list
0) hello
delete all notes
> rustash clear
> rustash list
no notes yet...
Commit count: 0

cargo fmt