私は次の.bashrcを書きました:
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific aliases and functions
function up( )
{
LIMIT=$1
P=$PWD
for ((i=1; i <= LIMIT; i++))
do
P=$P/..
done
cd $P
export MPWD=$P
}
function back( )
{
LIMIT=$1
P=$MPWD
for ((i=1; i <= LIMIT; i++))
do
P=${P%/..}
done
cd $P
export MPWD=$P
}
ただし、保存した後、保存するとsource .bashrc
、次のエラーが発生しました。 if: Expression Syntax.
私は何を間違っているのですか?私はしばらくググったが役に立たなかった。