查看
echo $PATH
临时
export PATH=$PATH:/home/shell
永久
echo 'export PATH=$PATH:/home/shell' > /etc/profile.d/path.sh
source /etc/profile.d/path.sh
echo $PATH
export PATH=$PATH:/home/shell
echo 'export PATH=$PATH:/home/shell' > /etc/profile.d/path.sh
source /etc/profile.d/path.sh