我在gotochild2文件中创建了一个别名.bashrc来更改特定路径/parent/child1/child2。现在我希望用户在child2中输入他的目录,这将是动态的。
例如,gotodir files必须转到/parent/child1/child2/files。如何在.bashrc中指定?

最佳答案

如果要传递类似gotodir files的参数,请使用函数而不是别名。
Make a Bash alias that takes a parameter?

gotodir () {
    cd "/parent/child1/child2/$1"
}

关于linux - bashrc别名的动态目录名称,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56187151/

10-11 17:46