已解决:我在文本编辑器中选择了错误的行尾
我试着.bashrc
在我的 iPhone 上玩一玩,只是为了好玩。添加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
任何和所有的帮助表示赞赏。
已解决:我在文本编辑器中选择了错误的行尾