我有这个:
javac -d "$PWD/target/classes" \
-cp "$CLASSPATH:$PWD/src/main/java" \
"$(find "$PWD/src/main/java/huru" -name '*.java')"
但是我得到了
javac: file not found: /home/oleg/codes/oresoftware/vertx.api/src/main/java/huru/Foo.java
/home/oleg/codes/oresoftware/vertx.api/src/main/java/huru/entity/BaseModel.java
/home/oleg/codes/oresoftware/vertx.api/src/main/java/huru/entity/InterfaceContainer.java
/home/oleg/codes/oresoftware/vertx.api/src/main/java/huru/entity/KCClassEntity.java
/home/oleg/codes/oresoftware/vertx.api/src/main/java/huru/entity/BaseEntity.java
/home/oleg/codes/oresoftware/vertx.api/src/main/java/huru/entity/UserModel.java
/home/oleg/codes/oresoftware/vertx.api/src/main/java/huru/query/QueryBuilder.java
/home/oleg/codes/oresoftware/vertx.api/src/main/java/huru/TestVerticle.java
/home/oleg/codes/oresoftware/vertx.api/src/main/java/huru/middleware/JWTHandler.java
所以我尝试使用xargs将其放在一行上:
javac -d "$PWD/target/classes" \
-cp "$CLASSPATH:$PWD/src/main/java:$m2" \
"$(find "$PWD/src/main/java/huru" -name '*.java' | xargs)"
但是我得到:
javac: file not found: /home/oleg/codes/oresoftware/vertx.api/src/main/java/huru/Foo.java /home/oleg/codes/oresoftware/vertx.api/src/main/java/huru/entity/BaseModel.java /home/oleg/codes/oresoftware/vertx.api/src/main/java/huru/entity/InterfaceContainer.java /home/oleg/codes/oresoftware/vertx.api/src/main/java/huru/entity/KCClassEntity.java /home/oleg/codes/oresoftware/vertx.api/src/main/java/huru/entity/BaseEntity.java /home/oleg/codes/oresoftware/vertx.api/src/main/java/huru/middleware/ErrorHandler.java /home/oleg/codes/oresoftware/vertx.api/src/main/java/huru/util/Asyncc.java /home/oleg/codes/oresoftware/vertx.api/src/main/java/huru/routes/IBasicHandler.java /home/oleg/codes/oresoftware/vertx.api/src/main/java/huru/routes/RouteHelper.java
其中xargs将所有内容放在一行中。所有这些java文件都存在,路径正确,但是很显然,find的结果不起作用。有人知道该怎么做吗?
答案 0 :(得分:0)
所以一种技术是使用一个临时文件(虽然很烂但是可以工作):
find . -name '.java' > my.files
javac @my.files
是的,根据javac规范,@字符是必需的,因此java知道它是要读取的文件。
但是我仍在寻找一种直接将查找结果查找到javac的方法,而不必使用临时文件。