Windows 终端应用中的 Azure Cloud Shell

Windows 终端应用中的 Azure Cloud Shell

一旦进入 Windows Terminal 的 Azure Cloud Drive shell,它似乎默认为 PowerShell。
我可以通过输入 Bash 切换到 Bash。
但是一旦进入 BASH shell,我可以再次切换到 PowerShell 吗?输入 PS 或 PowerShell 似乎不起作用。

答案1

我可以看到两种方法来做到这一点

  1. 您可以键入exit以退出bash或进入 PS。
PS /home/roshan> bash

roshan@Azure:~$ exit
exit

PS /home/roshan>

  1. 键入pwsh以打开新的 PS
PS /home/roshan> bash
roshan@Azure:~$ pwsh

PowerShell 7.0.0
Copyright (c) Microsoft Corporation. All rights reserved.

https://aka.ms/powershell
Type 'help' to get help.


MOTD: To Connect and Manage Exchange Online: Connect-EXOPSSession

VERBOSE: Authenticating to Azure ...
WARNING: Azure Authentication failed.
Loading personal and system profiles took 63433ms.

PS /home/roshan>

相关内容