52ll.org
52ll.org

批量修改xshell字体大小

创建文件 edit.ps1 ,在 C:\Users\qingh\Documents\NetSarang Computer\7\Xshell\Sessions 下执行,把里面的15修改为你想要的字号大小

Get-ChildItem -Path . -Filter *.xsh -Recurse | ForEach-Object {
    $content = Get-Content $_.FullName

    $newContent = $content -replace 'FontSize=\d+', 'FontSize=15' -replace 'AsianFontSize=\d+', 'AsianFontSize=15'

    Set-Content -Path $_.FullName -Value $newContent
}

发表回复

textsms
account_circle
email

52ll.org

批量修改xshell字体大小
创建文件 edit.ps1 ,在 C:\Users\qingh\Documents\NetSarang Computer\7\Xshell\Sessions 下执行,把里面的15修改为你想要的字号大小 Get-ChildItem -Path . -Filter *.xsh -Recurse | …
扫描二维码继续阅读
2023-10-10