已解决:我在文字编辑器中选择了错误的行结尾
我试图在我的iPhone上使用.bashrc
,只是为了好玩。将source /var/root/.bashrc
添加到我的/etc/profile
文件后,每次登录终端模拟器(本地或通过SSH)都会得到此信息。
: command not found
: command not found
: command not found
: command not found
: command not found
: command not found
: command not found
>
我的光标会覆盖'>'我每次输入
/var/root/.bashrc
alias install='apt-get install'
alias remove='apt-get remove'
alias aptsearch='apt-cache search'
alias respring='killall SpringBoard'
alias safemode='touch /var/mobile/Library/Preferences/com.saurik.mobilesubstrate.dat && killall SpringBoard'
alias shutdown='halt'
alias poweroff='halt'
alias ls='ls -group-directories-first -Ah'
alias lsl='ls -Ah1 --group-directories-first'
alias killall='killall -v'
alias reload='source /var/root/.bashrc'
export PS1='\w> '
clear
/etc/profile
export PATH='/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11:/usr/games'
export PS1='\h:\w \u\$ '
umask 022
for i in /etc/profile.d/*.sh ; do
if [ -r "$i" ]; then
. $i
fi
done
source /var/root/.bashrc
感谢任何和所有帮助。
已解决:我在文字编辑器中选择了错误的行结尾
答案 0 :(得分:0)
尝试手动执行脚本并查看输出。你应该得到一个行号来帮助你。