暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

makeBoth.sh 573B

1234567891011121314151617181920212223242526272829
  1. #!/bin/bash
  2. #
  3. # CREATE two PDF from *.tex Files one: Trainer, one: Traniee
  4. #
  5. # author phi@freimann.eu
  6. # date 2019-07-11
  7. export ARTICLE_FILE_NAME="Pruefung"
  8. export ZIELGRUPPE="GESO"
  9. if [ -f './TALS.flag' ] ; then
  10. export ZIELGRUPPE="TALS"
  11. fi
  12. export MAKE_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )
  13. if [ -f '../../layout/makeBoth.sh' ] ; then
  14. ../../layout/makeBoth.sh
  15. fi
  16. if [ -f '../../../layout/makeBoth.sh' ] ; then
  17. ../../../layout/makeBoth.sh
  18. fi
  19. if [ -f '../../../../layout/makeBoth.sh' ] ; then
  20. ../../../../layout/makeBoth.sh
  21. fi