Azure PowerShell 中的 CD 失败
CD in Azure PowerShell Failure
在 powershell cd
中有效,但在我的 Azure Cloud Shell 中无效。我错过了什么?
复制的会话显示我试图进入快速启动目录(这是在 powershell shell 中创建的)
Welcome to Azure Cloud Shell
Type "az" to use Azure CLI 2.0
Type "help" to learn about Cloud Shell
MOTD: Switch to Bash from PowerShell: bash
VERBOSE: Authenticating to Azure ...
VERBOSE: Building your Azure drive …
Azure:/
PS Azure:\> ls -F
clouddrive@ quickstart/ test/
Azure:/
PS Azure:\> cd quickstart
cd : Cannot find path 'Azure:/quickstart' because it does not exist.
At line:1 char:1
+ cd quickstart
+ ~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (Azure:/quickstart:String)
[Set-Location], ItemNotFoundException
+ FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.SetLocationCommand
您可以使用“cd $HOME/quickstart”来实现。
为了说明,请查看下面的屏幕截图。
希望对您有所帮助!!干杯!! :)
在 powershell cd
中有效,但在我的 Azure Cloud Shell 中无效。我错过了什么?
复制的会话显示我试图进入快速启动目录(这是在 powershell shell 中创建的)
Welcome to Azure Cloud Shell
Type "az" to use Azure CLI 2.0
Type "help" to learn about Cloud Shell
MOTD: Switch to Bash from PowerShell: bash
VERBOSE: Authenticating to Azure ...
VERBOSE: Building your Azure drive …
Azure:/
PS Azure:\> ls -F
clouddrive@ quickstart/ test/
Azure:/
PS Azure:\> cd quickstart
cd : Cannot find path 'Azure:/quickstart' because it does not exist.
At line:1 char:1
+ cd quickstart
+ ~~~~~~~~~~~~~
+ CategoryInfo : ObjectNotFound: (Azure:/quickstart:String)
[Set-Location], ItemNotFoundException
+ FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.SetLocationCommand
您可以使用“cd $HOME/quickstart”来实现。
为了说明,请查看下面的屏幕截图。
希望对您有所帮助!!干杯!! :)