我试图irb
从 shell 脚本进入,做一些事情,然后返回到 shell 脚本。
我怎样才能做到这一点?
#!/bin/bash
#example_app
# Some shell instructions here
irb
four = 2 + 2
exit
echo "This text is not reached and the process hangs open"
注意:我不应该尝试加载 irb 来输入静态代码,我同意你们的看法。我没有想过我在做什么。我正在与一个 AWS 库进行交互,我试图将同样的理念带到自动化的过程中,而没有三思而后行。