大家好,我正在学习如何在 linux 中使用 .bashrc 文件,正如我的标题所述,我想知道如何让函数将参数识别为别名
我有一个名为 home 的别名,定义为:alias home=$HOME
和一个函数 go 定义为
function go(){
cd $1
ls $1
}
但是当我这样做go home
时
bash: cd: home: No such file or directory
ls: cannot access home: No such file or directory
当我想要它去 $HOME
我将如何实施呢?