shell中执行jar程序,并且手动配置执行此jar程序的jdk环境,执行脚本为:
#!/bin/sh export JAVA_HOME=/home/hadoop/szw/jdk1.8.0_25 export PATH=$JAVA_HOME/bin:$JAVA_HOME/jre/bin:$PATH echo `date` java -jar stanford.jar edu.stanford.nlp.wordseg.ChineseDictionary -inputDicts in.txt -output dict.ser.szw.gz echo `date` java -jar stanford_model.jar edu.stanford.nlp.ie.crf.CRFClassifier -prop ctb.prop -serDictionary dict.ser.szw.gz -sighanCorporaDict data -trainFile in.txt -serializeTo newmodel.ser.szw.gz > newmodel.log 2> newmodel.err echo `date` //打印时间,其中`为tab键上面的按键
用此脚本执行时却总是报错,‘: not a valid identifierport: `,试了很多种方法总是找不到错误原因,最后发现是脚本文件格式的问题,需要把此脚本转化为UNIX格式,脚本我是用notepad++编辑的,保存是默认为Windows格式的,将此转化为UNIX后执行正常。
时间: 2024-11-03 22:33:07