标签: bash shell repl.it
我在repl.it上使用Bash。我正在制作自己的命令行,我想知道如何从名为commands的文件夹中运行脚本。基本上,我想使文件从文件夹运行。我该怎么办?
Link to my repl
答案 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.