$的替代品是什么?在窗户里?

问题描述 投票:0回答:0

我有两个 springboot 应用程序。应用程序 1 一直在后台运行并有一个 cron 调度程序,因此它每天下午 5 点处理一个文件。我想在应用程序 1 成功处理文件后调用另一个 springboot 应用程序。 我想尝试类似于下面提到的 shell 脚本的东西。

status= $?
if [ $status -eq 0]
then
    Call second application.
    exit 0 
else    
    echo "first app did not process file successfully." 
    exit 1
    fi

如何在窗口的批处理文件中实现这一点?当我的第一个应用程序一直在运行时,通过这种方法是否可行?

windows shell batch-file
© www.soinside.com 2019 - 2024. All rights reserved.