1 2 3 4 5 6 7 8 9 10
init: git config core.hooksPath .githooks test: cargo test --release run-examples: for eg in `ls ./examples/*.rs | xargs basename --suffix=.rs`; do \ cargo run --release --example $$eg; \ done