如何从bash中的文件夹打开文件?

时间:2018-11-07 15:10:29

标签: bash shell repl.it

我在repl.it上使用Bash。我正在制作自己的命令行,我想知道如何从名为commands的文件夹中运行脚本。基本上,我想使文件从文件夹运行。我该怎么办?

A picture describing what I want to do

Link to my repl

1 个答案:

答案 0 :(得分:0)

您能像这样运行它吗?

sh commands/${input}.sh

此外,您还应该能够推入/弹出目录以进入/退出目录。

pushd commands
# adds cwd into a stack and goes to <dir> commands/
sh $input.sh
popd 
# goes back to last dir in stack.