我更习惯于 unix 脚本。
findstr "ORA-[0-9]" alert_%%A.log>>%output-file%
在 unix 中,我可以捕获返回错误:
if [ $? -ne 0 ]; then
echo "there is no ORA-ERROR found on alert log" > $ERRLOG
问题:我怎样才能在 DOS / 批处理文件中做到这一点?
我更习惯于 unix 脚本。
findstr "ORA-[0-9]" alert_%%A.log>>%output-file%
在 unix 中,我可以捕获返回错误:
if [ $? -ne 0 ]; then
echo "there is no ORA-ERROR found on alert log" > $ERRLOG
问题:我怎样才能在 DOS / 批处理文件中做到这一点?