我正在嘗試編寫一個腳本,該腳本通過.jar運行多個輸入文件並將其輸出發送到名稱類似的輸出文件。Unix腳本輸入file1 file2 ... etc並輸出file1out file2out ...等?
爲了更好地解釋,我有一個jar文件,我們稱之爲HelloWorld.jar。
我也有輸入文件file1,file2和file3。
我需要輸出文件file1out,file2out,file3out。
現在我的腳本只是
java -jar HelloWorld.jar <file1> file1out
java -jar HelloWorld.jar <file2> file2out
etc
有一個更快的方法來做到這一點?
喜歡的東西...
java -jar HelloWorld.jar < * > (not really sure for this part)
請完善你的答案。解釋這是一個好的開始。 – Deduplicator