bash (Linux) では、1 行だけで非常に大きなコマンドがある場合、バックスラッシュ文字を使用してそれを区切ることができます。
./call-something.sh && \
./call-other-thing.sh
これを BAT ファイル (Windows) で行うにはどうすればよいですか? バックスラッシュも試してみましたが、次のようになります。
"\" is not recognized as an internal or external command, operable program or batch file.