我使用下面的bash脚本从命令行构建Eclipse工作区。我还没想出如何在工作区内构建一个特定的项目......我该怎么做?
#!/bin/sh
echo Eclipse path: ${ECLIPSE}
echo Eclipse workspace path: ${ECLIPSE_WORKSPACE}
stdout=$("${ECLIPSE}/eclipsec" -nosplash -application org.eclipse.jdt.apt.core.aptBuild -data "${ECLIPSE_WORKSPACE}" 2>/dev/null)
echo ${stdout}
if [[ ${stdout} == *error* ]]
then
exit 1
fi
exit 0
答案 0 :(得分:4)
自从您提出这个问题以来已经很长时间了,但我在StackOverflow的“未答复”部分看到了它。
我看到你在Linux中制作一个Bash脚本,这是我在配置eclipse.ini时有一天想出来的:
运行Eclipse时,打开终端并运行:
ps aux | grep eclipse
这将为您提供输出,例如:
/usr/bin/java -XX:MaxPermSize=256m -jar /usr/lib/eclipse//plugins/org.eclipse.equinox.launcher_1.2.0.dist.jar -os linux -ws gtk -arch x86_64 -showsplash -launcher /usr/lib/eclipse/eclipse -name Eclipse --launcher.library /usr/lib/eclipse//plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.100.dist/eclipse_1407.so -startup /usr/lib/eclipse//plugins/org.eclipse.equinox.launcher_1.2.0.dist.jar --launcher.overrideVmargs ... and so on
这是确切的过程及其论点。您可以通过在终端中复制并粘贴它并自己运行来测试它。额外的参数存储在eclipse.ini中。 有关为脚本配置eclipse.ini的更多信息,请查看以下内容: What are the best JVM settings for Eclipse?