jetsung / 将 Linux 环境变量导入到 Windows
0 polubień
0 forków
1 plików
Ostatnio aktywne 1 month ago
把 Linux 风格的 .myenv 文件(每行 export VAR=value)直接导入到 当前用户的 Windows 永久环境变量 中
| 1 | <# |
| 2 | .SYNOPSIS |
| 3 | 将 Linux 风格的 .env / .myenv 文件导入到 Windows 当前用户(或系统)环境变量 |
| 4 | .USAGE |
| 5 | .\Import-LinuxEnv.ps1 -FilePath "C:\myconfig\.myenv" |
| 6 | .\Import-LinuxEnv.ps1 .\.myenv # 自动识别当前目录文件 |
| 7 | .\Import-LinuxEnv.ps1 .\.myenv -System # 写入系统变量(需要管理员) |
| 8 | #> |
| 9 | |
| 10 | param( |
jetsung / Windows 终端配置初始化
0 polubień
0 forków
5 plików
Ostatnio aktywne 1 month ago
启动 PowerShell 时自动加载的配置文件
| 1 | # |
| 2 | # File: profile.ps1 |
| 3 | # Description: PowerShell Profile,启动时自动加载 |
| 4 | # Created: 2026-01-21 16:00:00 |
| 5 | # Updated: 2026-01-21 16:46:00 |
| 6 | # |
| 7 | |
| 8 | # 获取脚本所在目录 |
| 9 | $scriptDir = Split-Path -Parent $MyInvocation.MyCommand.Path |
Nowsze
Starsze