0

解決済み: テキスト エディターで間違った行末が選択されていました

.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

ありとあらゆる助けをいただければ幸いです。

解決済み: テキスト エディターで間違った行末が選択されていました

4

1 に答える 1

0

スクリプトを手動で実行して、出力を確認してください。行番号を取得する必要があります。

于 2013-06-03T03:11:49.597 に答える