path 설정 validate

This commit is contained in:
Toki 2024-12-29 11:03:32 +09:00
parent 401be9a72e
commit 0ccd110fda

View file

@ -1,4 +1,25 @@
source ~/.zshrc
#!/bin/bash
# Load .zprofile if it exists
if [ -f ~/.zprofile ]; then
source ~/.zprofile
fi
# Load .bash_profile if it exists
if [ -f ~/.bash_profile ]; then
source ~/.bash_profile
fi
# Load .bashrc if it exists (optional)
if [ -f ~/.bashrc ]; then
source ~/.bashrc
fi
# Load .zshrc if it exists (optional)
if [ -f ~/.zshrc ]; then
source ~/.zshrc
fi
echo $PATH
BASEDIR=$(dirname $0)
echo "===> Script location: ${BASEDIR}"