• 2024-08-28windows如何实现nohup?(未解决)
    背景今天在linux上搞后台任务,突发奇想powershell是否可以在关闭窗口后继续执行任务。探究以下的解决方法基本出自该帖https://www.v2ex.com/t/846505测试脚本,每一秒打印一个数字,逐渐递增。#PrintNumbers.ps1#初始化计数器$i=1#无限循环,直到脚本被中断while($true
  • 2024-08-28真香,powershell 7,pwsh / powershell打印中文乱码
    背景今天又测试了一个脚本,发现存在很多问题,首先就是打印中文出现乱码。这个问题我早期遇到过,当初的解决办法就是直接把脚本改成gbk格式。如今再碰到一次这个问题,又去查了一遍,发现powershell的新版已经解决了这个问题。于是找办法更新powershell。更新https://github.com/Powe
  • 2024-07-23【教程】vscode添加powershell7终端
    win10自带的powershell是1.0版本的,太老了,更换为powershell7后,在vscode的集成终端中没有显示本篇教程记录在vscode添加powershell7终端的过程打开vscode终端配置然后来到这个页面进行设置查看powershell7的安装位置,并关闭以管理员身份启动寻找下面的设置(找
  • 2024-02-12[Kyana]Fedora使用记录
    删除旧内核:dnfremove--oldinstallonly重置密码密钥环不匹配:安装seahorse新建并默认,可以单独设置密码,记好优化和扩展:dnfinstallgnome-tweaksgnome-extensions-app推荐扩展:user-themeseye-and-mouse-extendedjust-perfectionnothing-to-saytransparent-window-moving
  • 2023-07-19修复 GitLab 的 CI Runner 提示找不到 pwsh 执行文件
    本文告诉大家如何修复使用GitLab的Runner做CI时提示"pwsh":executablefilenotfoundin%PATH%错误有两个方法,第一个方法就是安装pwsh命令,安装方法是在PowerShell里输入以下代码安装wingetinstallMicrosoft.PowerShell如果嫌弃winget输入太慢,可以从他的输
  • 2023-06-22pwsh string cmd
    composemultiplevariablesintoacommandline,thenexecuteit.$dest="a:\des"$source="b:\src"$cmdlink="cmd"$cmdPart1="/c","mklink","/j"&$cmdlink$cmdPart1$dest\juncname1$sou
  • 2023-06-19Windows下载更新powershell
    在使用windows系统默认的powershell时,打开使用的时候一般都会碰到以下这种情况,有新的版本可以尝试使用在powershell中使用命令:$PSVersionTable;可以查看到当前powershell的一些信息安装新版本powershellWindows官方powershell文档:https://aka.ms/pscore6Powershell7.1的官方Git
  • 2023-05-06pwsh fs
    $delPath="x:\y\z\"If(Test-Path$delPath){Remove-Item$delPath-Recurse-Force}$tpath="u:\v\w"If(!(test-path-PathTypecontainer$tpath)){New-Item-ItemTypeDirectory-Path$tpath