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