#!/bin/env bash set -e if [ -f $HOME/.bashrc ]; then echo 'Removing existing bashrc...' mv $HOME/.bashrc $HOME/.bashrc.pre-stow fi; echo 'All file conflicts resolved, stowing...' stow . echo 'Finished stowing.'