I’m currently running multiple apps at once inside console windows – one per micro service. It can get a bit confusing, especially when the terminals’ outputs are very similar, but you can set the title of your console window to make it easier to identify.
Shell | Command |
---|---|
PowerShell | $Host.UI.RawUI.WindowTitle = "Shopping cart" |
Command Prompt | TITLE "Shopping cart" |
Put one of those commands at the top of each of your bat
or ps1
files and the console windows will be easy to tell apart.
Comments