Files
Utils/Installers/check.sh
T
2022-09-05 12:53:37 +03:00

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