如何从 bash 中的文件夹打开文件?
How do I open a file from a folder in bash?
我在 repl.it 上使用 Bash。我正在制作自己的命令行,我想知道如何从名为 commands 的文件夹中 运行 脚本。基本上,我想从一个文件夹中创建一个文件 运行。我该怎么做?
你能运行这样吗?
sh commands/${input}.sh
此外,您应该能够 push/pop dir 转到 into/out 个目录。
pushd commands
# adds cwd into a stack and goes to <dir> commands/
sh $input.sh
popd
# goes back to last dir in stack.
我在 repl.it 上使用 Bash。我正在制作自己的命令行,我想知道如何从名为 commands 的文件夹中 运行 脚本。基本上,我想从一个文件夹中创建一个文件 运行。我该怎么做?
你能运行这样吗?
sh commands/${input}.sh
此外,您应该能够 push/pop dir 转到 into/out 个目录。
pushd commands
# adds cwd into a stack and goes to <dir> commands/
sh $input.sh
popd
# goes back to last dir in stack.