2022年10月8日

摘要: 参考 https://www.cnblogs.com/shareHistory/p/15850707.html 下载并安装依赖 wget https://www.openssl.org/source/openssl-3.0.5.tar.gz yum -y install perl-IPC-Cmd 编 阅读全文
posted @ 2022-10-08 11:07 1226032602 阅读(33) 评论(0) 推荐(0) 编辑

2022年10月7日

摘要: pip安装pyttsx3 pip install pyttsx3 代码示例 import pyttsx3 engine = pyttsx3.init() # engine.say("Beautiful is better than ugly.") # engine.say("轻轻地,我走了,正如我轻 阅读全文
posted @ 2022-10-07 09:27 1226032602 阅读(19) 评论(0) 推荐(0) 编辑

2022年9月25日

摘要: 安装bottle库 pip install bottle 上传代码 import bottle @bottle.get('/upload') def upload_get(): return bottle.static_file('index.html', 'd:/web') @bottle.pos 阅读全文
posted @ 2022-09-25 09:12 1226032602 阅读(38) 评论(0) 推荐(0) 编辑

2022年9月14日

摘要: https://www.cnblogs.com/sparkdev/p/8795141.html 限定日志所能占用的最高容量 我们可以通过 /etc/systemd/journald.conf 文件来配置 systemd-journald 服务的行为。以下条目可用于限定日志数据可以占用的最大存储数量和 阅读全文
posted @ 2022-09-14 10:56 1226032602 阅读(283) 评论(0) 推荐(0) 编辑

2019年11月4日

摘要: 计算机系统 计算机硬件 主机 CPU 内存 主板 外部设备 存储 (硬盘 光盘 闪存) 输入设备 (键盘 鼠标等) 输出设备 (显示器 音箱等) 计算机软件 系统软件 操作系统 编译和解释系统 系统服务程序 网络软件 应用软件 文字处理软件 各种应用软件包 冯诺依曼体系结构 输入 输出 运算器 控制 阅读全文
posted @ 2019-11-04 09:30 1226032602 阅读(118) 评论(0) 推荐(0) 编辑

2019年3月16日

摘要: 本文作者: 五行哥 QQ: 1226032602 E mail: 1226032602@qq.com 官方文档 https://axkibe.github.io/lsyncd/ https://github.com/axkibe/lsyncd 简介 Lsyncd使用文件系统事件接口(inotify或 阅读全文
posted @ 2019-03-16 10:13 1226032602 阅读(174) 评论(0) 推荐(0) 编辑

2018年6月17日

摘要: 名字 表达式 如果子表达式成功则 … positive lookahead (零宽度正预测先行断言 ) (?=subexp) 如果匹配到右边则成功 negative lookahead (零宽度负预测先行断言) (?!subexp) 如果没有匹配到右边则成功 positive lookahead ( 阅读全文
posted @ 2018-06-17 18:18 1226032602 阅读(111) 评论(0) 推荐(0) 编辑
摘要: \n 回车 \b 单词边界 \w [a-Z0-9]中任意一个字符 \W [^a-Z0-9] \d [0-9]中任意一个数字 \D [^0-9] \s 任意一个空白字符 \S 任意一个非空白字符 阅读全文
posted @ 2018-06-17 18:16 1226032602 阅读(3149) 评论(0) 推荐(0) 编辑
摘要: 符号 含义 ; 命令分隔符 # 配置文件注释; root用户命令终端提示符 ~ 家目录 cd ~ - 上一次所在路径 cd - su - linux切换用户环境 ^ 非 [^abcd] $ 变量前加$ 取出变量内容 '' 原样输出 "" $ `` ! 这几个符号可以解析,其它的字符原样输出 ! 非, 阅读全文
posted @ 2018-06-17 18:12 1226032602 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 使用shopt 内置命令启用shell选项 (extglob) 则会识别几个扩展模式匹配运算符 模式列表是由 | 分割 查看shell选项 extglob shopt |grep extglob shopt |grep extglob 启动shell选项 extglob shopt -s extgl 阅读全文
posted @ 2018-06-17 18:02 1226032602 阅读(642) 评论(0) 推荐(0) 编辑

导航