我的$ PROFILE中有一个自定义的PowerShell提示功能,它可以在Windows上用于PS 5.1和PS Core 6.0,但不适用于Ubuntu 17.04上的PS Core 6.0。
为了让事情变得更有趣,当我开始输入时,光标移动和命令文本出现在我预期的情况下,如果输出没有重复: 命令还将在重复的提示输出之上打印输出。
$PSVersionTable
的输出:
Name Value
---- -----
PSVersion 6.0.0
PSEdition Core
GitCommitId v6.0.0
OS Linux 4.10.0-40-generic #44-Ubuntu SMP Thu Nov 9 14:49:09 UTC 2017
Platform Unix
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...}
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1
WSManStackVersion 3.0
生成提示的函数:
function global:prompt {
$realLASTEXITCODE = $LASTEXITCODE
Write-Host
Write-Host (Get-Date -Format:'o') -ForegroundColor:DarkGray
Write-Host "PS " -NoNewline -ForegroundColor:Green
Write-Host $pwd.ProviderPath -NoNewline
# Write-VcsStatus
Write-Host
$global:LASTEXITCODE = $realLASTEXITCODE
return "> "
}
我是Linux的新手,我对可能导致这种奇怪行为的搜索迄今为止毫无结果。任何帮助将不胜感激。
答案 0 :(得分:2)
这是与Core一起提供的PSReadLine版本中的一个错误。这是issue
您可以安装2.0的预发布版本。
Install-Module PSReadLine -RequiredVersion 2.0.0-beta1 -AllowPrerelease -Force
如果您收到有关-AllowPrerelease
的错误消息,则还需要更新PowerShellGet
。
Install-Module PowerShellGet -RequiredVersion 1.6.0 -Force