cli 0.0.1

One Rust crate for creating beautiful command line applications.
#!/bin/bash
rm -r -f .gh-pages
mkdir .gh-pages
cd .gh-pages
git init

cp -r ../target/doc/* .
cat <<EOF > index.html
<!doctype html>
<title>cli</title>
<meta http-equiv="refresh" content="0; ./cli/">
EOF

git add -f --all .
git commit -m "Added docs"
git remote add origin git@github.com:fengsp/cli.git
git push -f origin master:gh-pages

cd ..
rm -r -f .gh-pages