.bashrc奇怪警告"找不到lias命令"

时间:2016-01-03 23:14:10

标签: bash unix

我有一个以下.bashrc文件:

function lazygit() {
    git add --all :/
    git commit -a -m "$1"
    git push
}

function bak() {
    git pull
    git add --all :/
    git commit -a -m "backup: $1"
    git push
}

但每当我拨打lazygitbak命令时,我都会:

/home/bok/.bashrc: line 1: lias: command not found
Already up-to-date.
On branch master
Your branch is up-to-date with 'origin/master'.

nothing to commit, working directory clean
/home/bok/.bashrc: line 1: lias: command not found
Everything up-to-date

为什么我得到" lias:命令未找到"?

1 个答案:

答案 0 :(得分:2)

打开/home/bok/.bashrc并转到第1行。您会看到lias并更改为alias(可能会意外删除a)。

完全关闭终端并重新打开。它现在应该可以正常工作。