iPhone .bashrc无法正常工作

时间:2013-06-03 02:57:51

标签: iphone linux bash ssh jailbreak

已解决:我在文字编辑器中选择了错误的行结尾

我试图在我的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

感谢任何和所有帮助。

已解决:我在文字编辑器中选择了错误的行结尾

1 个答案:

答案 0 :(得分:0)

尝试手动执行脚本并查看输出。你应该得到一个行号来帮助你。