#!/bin/bash if [ -f ~/.bash_profile ]; then echo "bash_profile exist" else echo "make link bash_profile" ln -s ~/.profile ~/.bash_profile fi