-
PowerShell、CMD、Linux 命令换行
场景 运行docker命令,该命令由多行组成。在Linux中使用\表示换行。 docker run \ --name nginx \ -p 80:80 \ ng
2023-03-10, Views: 2108 , Topics: Linux cmd PowerShell
-
Windows PowerShell 设置命令别名永久生效
当前会话生效 Set-Alias -Name k -Value kubectl 设置永久生效 PowerShell 配置文件位置 文件不一定存在 $profil
2022-08-15, Views: 1882 , Topics: PowerShell Windows
-
Windows 使用 PowerShell 保存 SSH 信息实现快捷登录
需求 每次需要登录到服务器都需要使用ssh root@ip,再输入密码,才能完成登录服务器,进入到Shell命令行窗口。 使用PowerShell实现打开命令行
2022-06-30, Views: 5158 , Topics: SSH PowerShell Windows
-
Windows 配置 SSH 免密登录 Linux 服务器
免密登录 只需要使用如下命令即可直接登录服务器Shell窗口,无需输入密码。 ssh root@192.168.1.100 解决方法 使用ssh-keygen生
2022-06-29, Views: 2986 , Topics: SSH PowerShell Git
-
Windows PowerShell 使用 Test-NetConnection 测试网络连接
Test-NetConnection 可简写为TNC、tnc。 PS C:\> Get-Alias tnc CommandType Name
2022-06-27, Views: 5742 , Topics: PowerShell Windows
-
Windows PowerShell 设置默认开启管理员权限
需求 每次PowerShell打开都是没有管理员权限的,执行一些需要管理员权限的命令还需要重新开启。 解决方法 打开设置 选择PowerShell 打开Run
2022-06-26, Views: 3417 , Topics: PowerShell Windows
-
PowerShell 无法执行 node-gyp 命令
错误信息 node-gyp : 无法加载文件 C:\Users\fendoudebb\AppData\Roaming\npm\node-gyp.ps1,因为在此
2021-06-19, Views: 3922 , Topics: Node.js PowerShell
-
PowerShell 快捷键
清空当前行 Esc 自动补全 Tab 显示历史执行命令 F7,按方向右键选中,在Shell(如:mysql、psql、mongo)中有效 显示会话第一个命令 P
2020-12-22, Views: 2494 , Topics: PowerShell Windows
-
PostgreSQL 错误: 编码 "UTF8" 的字符 0x0xc9 0x99 在编码 "GBK" 没有相对应值
问题描述 在Windows的PowerShell中使用psql查询记录时抛出如下异常。 错误: 编码"UTF8"的字符0x0xc9 0x99在编码"GBK"没
2020-12-17, Views: 7978 , Topics: PostgreSQL PowerShell chcp
-
PowerShell 使用 wget 只输出信息不下载问题
问题 直接使用wget拼接一个url地址,将会在控制台得到HTTP信息,而不是完整的文件。 PS C:\Users\fendoudebb\Desktop>
2020-12-07, Views: 4846 , Topics: PowerShell wget Windows
-
Go 在 Windows 上编译 Linux 版本
查看 Go 环境变量 操作系统 go env GOOS 架构 go env GOARCH CMD 编译 注意:Windows下set指令只在cmd下有效,无法在
2020-10-30, Views: 5400 , Topics: Go cmd PowerShell
-
Windows 使用 chcp 修改 PowerShell、cmd 编码
说明 PowerShell或cmd默认编码跟随系统,很有可能不是UTF-8编码。 CHCP Changes the active console code p
2019-08-14, Views: 6380 , Topics: chcp cmd PowerShell