上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 52 下一页
摘要: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer Create a DWORD 32-bit value named HubMode Set the HubMode value data to 1 【注意】 先 阅读全文
posted @ 2020-07-16 17:55 lishidefengchen 阅读(297) 评论(0) 推荐(0)
摘要: react-hook使用 const [platDic, setPlatDics] = useState(); useEffect(() => { queryPlat().then((re) => { setPlatDics(re.data); }); }, []); useEffect(() => 阅读全文
posted @ 2020-07-16 11:13 lishidefengchen 阅读(176) 评论(0) 推荐(0)
摘要: 打开某文件,里面有巨多无比的注释行,这些注释行,一般都是以#或者;开头的,如何筛选出来其中没有被注释掉的内容呢? cat sources.list | grep -v "#" | grep -v ";" | grep -v "^$" > sources.list.2 -v 在 grep 命令中是反选 阅读全文
posted @ 2020-07-16 00:11 lishidefengchen 阅读(3431) 评论(0) 推荐(1)
摘要: https://dashboard.daocloud.io/ 阅读全文
posted @ 2020-07-15 23:13 lishidefengchen 阅读(673) 评论(0) 推荐(0)
摘要: https://www.pianshen.com/article/93251125824/ https://www.daocloud.io/mirror 阅读全文
posted @ 2020-07-15 23:01 lishidefengchen 阅读(286) 评论(0) 推荐(0)
摘要: 跨平台C++图形用户界面应用程序 阅读全文
posted @ 2020-07-15 14:38 lishidefengchen 阅读(108) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/yidichaxiang/article/details/104641253 阅读全文
posted @ 2020-07-15 11:27 lishidefengchen 阅读(116) 评论(0) 推荐(0)
摘要: @echo off set myDir=D:\alm set myBuildDir=D:\Source\Core\DD.Webapi pushd %myBuildDir% ::switch build directory git pull if %errorlevel%==0 (dotnet pub 阅读全文
posted @ 2020-07-15 09:14 lishidefengchen 阅读(261) 评论(0) 推荐(0)
摘要: 判断是否成功,失败了直接退出,后续命令不再执行 @echo off git pull if %errorlevel%==0 (dotnet publish -c Release) else (goto :eof) :: 后续命令... %errorlevel%==0 上一条指令执行成功 %error 阅读全文
posted @ 2020-07-15 08:42 lishidefengchen 阅读(3713) 评论(0) 推荐(0)
摘要: 因为百分号 % 在bat文件中是具有转义功能的,所以,如果你的密码中有%,那么它将被转义,需要你输入两个%%,这样才会正确的输入一个%,别的类同。 【例如】 其实我要执行的是 pscp -pw wGj6oL8Q%12345 /root/plm 但因为%转义的原因,一不注意,就会导致无法正常执行了。 阅读全文
posted @ 2020-07-15 08:21 lishidefengchen 阅读(931) 评论(0) 推荐(0)
摘要: @echo off SETLOCAL EnableDelayedExpansion for /F "tokens=1,2 delims=#" %%a in ('"prompt #$H#$E# & echo on & for %%b in (1) do rem"') do ( set "DEL=%%a 阅读全文
posted @ 2020-07-14 23:58 lishidefengchen 阅读(5109) 评论(0) 推荐(0)
摘要: 修改文件后缀txt 以ANSI编码另存为 重新修改后缀为bat 执行即可 阅读全文
posted @ 2020-07-14 21:56 lishidefengchen 阅读(198) 评论(0) 推荐(0)
摘要: https://get.daocloud.io 阅读全文
posted @ 2020-07-14 17:27 lishidefengchen 阅读(2090) 评论(0) 推荐(0)
摘要: (请使用非root用户)执行如下命令,安装docker-compose sudo curl -L "https://github.com/docker/compose/releases/download/1.26.2/docker-compose-$(uname -s)-$(uname -m)" - 阅读全文
posted @ 2020-07-14 17:09 lishidefengchen 阅读(293) 评论(0) 推荐(0)
摘要: 【运行】 docker run --name plmcore3 -v /etc/localtime:/etc/localtime:ro -e "ASPNETCORE_ENVIRONMENT=Production" -d -p 5500:80 plmcore:v10.0 【Dockerfile】 EN 阅读全文
posted @ 2020-07-14 16:09 lishidefengchen 阅读(639) 评论(0) 推荐(0)
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 52 下一页