Cargo.toml
toml
[dependencies]
app = "0.6.3"
toml
[dependencies]
app = { git = "https://github.com/biluohc/app",branch = "master", version = "0.6.3" }
Or
cargo doc --open
after modified the toml file.bash
git clone https://github.com/biluohc/app
bash
cargo run --example fht2p -- -h
bash
cargo run --example cp
bash
cargo run --example cpfn
Sub_Commands, OptValue and OptValueParse
bash
cargo run --example zipcs
http
: Option's order in help messagebash
cargo run --example http
Helps
and cargo subcmd
bash
cargo run --example cargo-http
name | status | exapmle
-|-|-|
Flag |√| ls --help
, cargo -V
Option |√| http --port 8080
, rustc -o filename
Args |√| rm Path1 Path2 Path3
SubCMD |√| cargo run
, cargo doc
Flags aggregation|√| ls -a -l
=> ls -al
Multi Args |√| cp SOURCE1 SOURCE2 SOUCE3 DEST
Optional for Option and Args |√|
Dependencies and Conflicts between Options |x|