解決済み: テキスト エディターで間違った行末が選択されていました
.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
ありとあらゆる助けをいただければ幸いです。
解決済み: テキスト エディターで間違った行末が選択されていました