上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页
摘要: bat %n 判断传入的参数值和使用注意 if "%1" == "" echo empty 1 if exist "%1" echo 1path exist 注意:要加上双引号"",不然如果传入的参数是空的话,会导致bat闪退,因为如果是空,而没有双引号,那么就变成 if == "" echo em 阅读全文
posted @ 2019-07-09 10:55 ibingshan 阅读(4303) 评论(0) 推荐(0) 编辑
摘要: git ls-remote url,判断 url 是否存在 git ls-remote <url> 阅读全文
posted @ 2019-07-03 14:48 ibingshan 阅读(1257) 评论(0) 推荐(0) 编辑
摘要: bat 读取 ini 文件 参考链接:https://stackoverflow.com/questions/2866117/windows-batch-script-to-read-an-ini-file 这个 bat 支持 ini 的键值与=号之间存在空格,例如 key1 = value1 re 阅读全文
posted @ 2019-06-28 13:38 ibingshan 阅读(3746) 评论(0) 推荐(0) 编辑
摘要: bat 提示窗口 各种窗口样式 这里只是一些提示窗口的样式,至于提示窗口的不同选择不同执行需要另外查看帮助 换行例子: 注意:vbscript:后面语法之间不要加任何空格,不然会报错 阅读全文
posted @ 2019-06-26 17:57 ibingshan 阅读(2436) 评论(0) 推荐(0) 编辑
摘要: python .pth 文件 和 site 模块 .pth 文件 该文件位于 python 的 /Lib/site-packages 目录下,可以有多个,在 .pth 文件中可以把其它目录添加到 sys.path 中,可以是相对路径和绝对路径,例如: #注释只能单独一行,以#开头 #绝对路径 d:/ 阅读全文
posted @ 2019-06-25 14:11 ibingshan 阅读(4336) 评论(0) 推荐(0) 编辑
摘要: python Pillow 图片处理模块,好强大有没有 Pillow 需要给 python 另外安装 第一个用法:https://www.cnblogs.com/ibingshan/p/11057390.html ico to png: 阅读全文
posted @ 2019-06-20 15:30 ibingshan 阅读(420) 评论(0) 推荐(0) 编辑
摘要: Python 获取 exe 的 icon(图标) 并且保存 参考链接:https://mail.python.org/pipermail/python-win32/2009-April/009078.html import win32ui import win32gui import win32co 阅读全文
posted @ 2019-06-20 10:52 ibingshan 阅读(3766) 评论(3) 推荐(2) 编辑
摘要: git 判断路径是否是 git 仓库 参考链接:https://stackoverflow.com/questions/2044574/determine-if-directory-is-under-git-control 阅读全文
posted @ 2019-06-17 16:29 ibingshan 阅读(2045) 评论(0) 推荐(0) 编辑
摘要: Python 去除字符串中的空行 阅读全文
posted @ 2019-06-13 16:57 ibingshan 阅读(5874) 评论(0) 推荐(0) 编辑
摘要: bat wmic python 获取进程的所在路径 doc: python: 参考链接:https://superuser.com/questions/1003921/how-to-show-full-command-line-of-all-processes-in-windows 获取其它属性: 阅读全文
posted @ 2019-06-13 15:35 ibingshan 阅读(1886) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 16 下一页