上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 21 下一页
摘要: var fs=require('fs'); var options={ encoding:'utf8', withFileTypes:true } var renameFile=function(path){ console.log('当前目录:'+path); fs.readdir(path,op 阅读全文
posted @ 2020-02-14 11:07 wolbo 阅读(454) 评论(0) 推荐(0) 编辑
摘要: 1 执行bin目录下的脚本启动查看具体的报错信息 PS E:\Program Files\JetBrains\IntelliJ IDEA 2019.3.2\bin> .\idea.bat OpenJDK 64-Bit Server VM warning: Option UseConcMarkSwee 阅读全文
posted @ 2020-02-07 17:51 wolbo 阅读(18820) 评论(0) 推荐(0) 编辑
摘要: 1 解压 rem 平铺开@echo off echo 解压%1到%2 7z.exe e %1 -y -o%2 echo 解压%1完成rem 完整目录7z.exe x E:\npm.zip -y -o"C:\Users\AppData\Roaming\npm"\ -aoarem 压缩当前目录到test 阅读全文
posted @ 2020-02-06 12:05 wolbo 阅读(800) 评论(0) 推荐(0) 编辑
摘要: 一 修改扩展 1 直接cmd执行 去掉后缀 for /r %a in (*.bt) do ren "%a" "%~na" 修改后缀 for /r %a in (*.bt) do ren "%a" "%~na.test" 2 保存脚本 for /r %%a in (*.bt) do ren "%%a" 阅读全文
posted @ 2020-02-05 13:19 wolbo 阅读(349) 评论(0) 推荐(0) 编辑
摘要: https://www.alexgoldcheidt.com/raspberry-pi-aria2-web-ui/?__cf_chl_captcha_tk__=79b7cacad41c7817f12080af5a4577d57b69f8e7-1580699959-0-ATVbJrKXxCiy9LLC 阅读全文
posted @ 2020-02-03 14:17 wolbo 阅读(1478) 评论(0) 推荐(0) 编辑
摘要: 1 下载openjdk https://adoptopenjdk.net/ 2 解压 3 在解压后的目录中 新建批处理文件 color 0a ::删除JAVA_HOME wmic ENVIRONMENT where "name='JAVA_HOME'" delete ::删除ClASSPATH wm 阅读全文
posted @ 2020-02-02 10:17 wolbo 阅读(335) 评论(0) 推荐(0) 编辑
摘要: private int Execute(string str, bool silence = false) { int result; try { Console.WriteLine("nuget " + str); Process process = this.ExecuteCMD(str); S 阅读全文
posted @ 2020-01-15 14:17 wolbo 阅读(514) 评论(0) 推荐(0) 编辑
摘要: 1 官方文档 dotnet 可代替nuget.exe https://docs.microsoft.com/zh-cn/nuget/install-nuget-client-tools 低版本的nuget 缺少一些参数 2 安装mono https://www.mono-project.com/do 阅读全文
posted @ 2020-01-15 13:30 wolbo 阅读(1385) 评论(0) 推荐(1) 编辑
摘要: 1 通过包管理器安装 a 添加包源 最新发行版 yum install -y gcc-c++ make curl -sL https://rpm.nodesource.com/setup_13.x | sudo -E bash - 稳定版 yum install -y gcc-c++ make cu 阅读全文
posted @ 2020-01-10 16:28 wolbo 阅读(173) 评论(0) 推荐(0) 编辑
摘要: git config --global credential.helper store git credential-store store protocol=http host=10.24.21.1 username=xxx password=xxx 参考: https://unix.stacke 阅读全文
posted @ 2020-01-10 15:05 wolbo 阅读(579) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 21 下一页