https://github.com/karl616/gNOMePeaks
Raw File
Tip revision: 80f1f3107a0dbf95fa2e98bdd825ceabdaff3863 authored by Karl Nordström on 08 March 2019, 14:27:36 UTC
Merge branch 'master' of https://github.com/karl616/gNOMePeaks
Tip revision: 80f1f31
createJar.sh
#!/bin/bash



pushd $(dirname $0)
  #compile all java files
  find . -name "*.java" \
    | xargs javac -g

  #pack source and java files into an executable jar file
  jar -cvfe bisUtils.jar tools.bis.bisUtils  $(find . -type f -name "*.java" -o -name "*.class")

  #clean up and remove class files
  find . -name "*.class" \
    | xargs rm
popd

back to top