printable-shell-command 0.2.0

A helper library to print shell commands.
Documentation
.PHONY: build
build:
	cargo build

.PHONY: test
test:
	cargo test
	cargo run --example echo
	cargo run --example ffmpeg
	cargo run --example cargo-version

.PHONY: publish
publish:
	cargo publish

.PHONY: lint
lint:
	cargo clippy -- --deny warnings
	cargo fmt --check

.PHONY: format
format:
	cargo clippy --fix --allow-no-vcs
	cargo fmt