/etc/profile 错误

提示 -bash: $'\r': 未找到命令
-bash: /etc/profile:行31: 未预期的符号 `$'do\r'' 附近有语法错误
'bash: /etc/profile:行31: ` for i in /etc/profile.d/*.sh; do
-bash-4.3#

文件配置如下

# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).

if [ "`id -u`" -eq 0 ]; then
PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
else
PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games"
fi
export PATH

if [ "$PS1" ]; then
if [ "$BASH" ] && [ "$BASH" != "/bin/sh" ]; then
# The file bash.bashrc already sets the default PS1.
# PS1='\h:\w\$ '
if [ -f /etc/bash.bashrc ]; then
. /etc/bash.bashrc
fi
else
if [ "`id -u`" -eq 0 ]; then
PS1='# '
else
PS1='$ '
fi
fi
fi

# The default umask is now handled by pam_umask.
# See pam_umask(8) and /etc/login.defs.

if [ -d /etc/profile.d ]; then
for i in /etc/profile.d/*.sh; do
if [ -r $i ]; then
. $i
fi
done
unset i
fi
求教 请问哪里错了 如何修改啊

你找一个未修改过的/etc/profile覆盖它吧。你改profile配置的时候应该先备份。
温馨提示:答案为网友推荐,仅供参考
相似回答