一、获取Java代码返回内容 1. java代码 publicclassTest{publicstaticvoidmain(String[]args){System.out.println("aaa bbb ccc ");System.out.println(" ddd eee fff");}} 2. shell脚本 #!/bin/sh ids=$(java -jar /home/example/test-1.0-SNAPSHOT.jar | tail -l) echo ${ids[@]} for itemId...
fork是最普通的, 就是直接在脚本里面用 path/to/foo.sh来调用 foo.sh这个脚本,比如如果是 foo.sh 在当前目录下,就是 ./foo.sh。运行的时候 terminal 会新开一个子 Shell 执行脚本 foo.sh,子 Shell 执行的时候, 父 Shell 还在。子 Shell 执行完毕后返回父 Shell。 子 Shell 从父 Shell 继承环境变量,但...