Files
card-cli/justfile
2024-09-07 01:33:57 +08:00

24 lines
327 B
Makefile

_:
@just --list
# install card-cli
install:
cargo install --path .
# run --help
help:
cargo r -- --help
# run pgp-card-list
pgp-list:
cargo r -- pgp-card-list
# run example: rsa_encrypt
example-rsa-encrypt:
cargo r --example rsa_encrypt
# run example: ssh_agent
example-ssh-agent:
cargo r --example ssh_agent