cd ~
git clone https://github.com/overtninja/dotfiles.git
cd dotfiles
./install.sh
cd ~/dotfiles
./uninstall.sh
You should really check this guys project out if you're writing Ansible or Salt.
I add this alias to my ~/.bashrc
alias yams='find . -type f -name "*.yml*" -exec yamllint -f parsable {} \; | sed "s|\./||g" | egrep -v "(\.kitchen/|\[warning\])"'
Inside of one of my ansible projects I can then run
yams