摘要: 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 阅读(262) 评论(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 阅读(3715) 评论(0) 推荐(0)
摘要: 因为百分号 % 在bat文件中是具有转义功能的,所以,如果你的密码中有%,那么它将被转义,需要你输入两个%%,这样才会正确的输入一个%,别的类同。 【例如】 其实我要执行的是 pscp -pw wGj6oL8Q%12345 /root/plm 但因为%转义的原因,一不注意,就会导致无法正常执行了。 阅读全文
posted @ 2020-07-15 08:21 lishidefengchen 阅读(931) 评论(0) 推荐(0)