mac上的习惯命令行

时间:2017-05-29 03:15:39

标签: linux shell unix command-line

每次进入终端时,我可以输入'jp'而不是'jupyter notebook'吗?我尝试了别名〜/ .bash_profile,但它不起作用

alias jp = 'jupyter notebook'

它说

-bash: ‘jupyter: command not found

1 个答案:

答案 0 :(得分:1)

有不同的方法可以做到这一点:

1st~ / .bashrc

使用您选择的editor打开〜/ .bashrc ,并在Alias之后添加一些行:

# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
alias jp='jupyter notebook'

保存并关闭它。

2nd~ / .bash_aliases

更明确一点是touch新文件〜/ .bash_aliases ,并使用您的editor选项打开它。添加几行,保存并关闭它。

alias jp='jupyter notebook'
alias la='ls -al'
alias ..='cd ..'

要重新加载 bash_aliases ,您需要在 .bashrc

中添加这些行
if [ -f ~/.bash_aliases ]; then
        . ~/.bash_aliases
fi

最后你需要重新加载源:

第一种方式:

$ source ~/.bashrc

第二种方式,创建新文件后:

$ source ~/.bash_aliases