files/root/.bash_profile
zhao 9c60f656bc 添加 root/.bash_profile
Signed-off-by: zhao <zj18139624826@gmail.com>
2025-05-29 01:28:30 +08:00

17 lines
287 B
Bash

# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH
# Automatically execute ZeroWrt every time you connect to ssh
if [ -x /bin/ZeroWrt ]; then
/bin/ZeroWrt
fi