Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 PowerShell,重新启动后有什么方法可以返回上一个会话?我正在用它编写 Python 程序,每次启动 PowerShell 时转到我正在工作的目录有点乏味。
这可以通过在您的配置文件中设置主目录来完成。键入$profile您的 shell 以查找您的 Powershell 配置文件的路径。在文本编辑器中打开此文件并添加此行
$profile
Set-Location C:\Python\MyProject
确保它是第一行,然后每次打开 Powershell 时,它都会将其目录更改为您在配置文件中设置的目录。注意:如果您使用 -noprofile 开关启动 powershell,这将不起作用。