0

我有一个 unix shell 脚本,它使用 java 程序来处理一些文件。

脚本名称是:Medica_auto.sh

使用以下命令制作此脚本的控制台日志文件:

sh Medica_auto.sh >> Filelog.log

但过程是:它还会在日志文件中打印整个java代码处理,这会不必要地增加日志文件的大小。

我正在使用以下代码:

$JAVACODE $INPUT$FILE $DIV_NAME $Mst_Grp $File_Mth $File_Yr

他们有什么方法我不会在控制台(在日志文件中)打印java代码的输出吗?

提前致谢 !!!

4

1 回答 1

0

I m using below code:

$JAVACODE $INPUT$FILE $DIV_NAME $Mst_Grp $File_Mth $File_Yr

IS their any way which i will not print the output of java code in console (in log file)??

Assuming that you don't want the output of the above line in your log file, you can replace it with:

$JAVACODE $INPUT$FILE $DIV_NAME $Mst_Grp $File_Mth $File_Yr >/dev/null 2>&1
于 2013-10-04T09:55:53.393 回答