摘要: # \[案例]爬取贴吧并保存网页文件 ```python import urllib.parse import requests class TiebaSpider(object): def __init__(self, url, name): self.url = url self.name = 阅读全文
posted @ 2023-07-17 10:57 蕝戀 阅读(11) 评论(0) 推荐(0) 编辑
摘要: # 基本使用 # 发送get请求、获取响应各种请求、响应信息 ```python def fun1(): url = "http://www.baidu.com" resp = requests.get(url) print(resp) # 打印时会发现乱码 # 因为resp默认是自动推算编码的,经 阅读全文
posted @ 2023-07-17 10:54 蕝戀 阅读(4) 评论(0) 推荐(0) 编辑
摘要: awk [OPTIONS] PROGRAM FILE... 选项: -F 指定分隔符 -f 引用awk脚本 -v VAR=VALUE 定义一个变量传递给PROGRAM,但是这里的变量BEGIN读不了,只有PROGRAM和END才能读。 PROGRAM由“ PATTERNS{ACTION;ACTION 阅读全文
posted @ 2021-03-14 16:29 蕝戀 阅读(391) 评论(0) 推荐(0) 编辑
摘要: # 命令行登录 mysql -uroot -proot # 基本 show tables show databases use DATABASENAME # 创建表 create table TABLENAME ( id int primary key auto_increment, name va 阅读全文
posted @ 2021-03-13 15:10 蕝戀 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 文件系统fs 文件系统时操作系统用来管理文件的。fs=filesystem。。。 在linux中,一切皆为文件,这句话够经典了吧。。。 linux中每个分区都是一个fs。 FHS Linux下的Filesystem Hierarchy Standard(文件系统层次化标准),树形结构。 标准来说,都 阅读全文
posted @ 2021-02-01 22:36 蕝戀 阅读(370) 评论(0) 推荐(0) 编辑
摘要: bashname命令作用 去掉给定name的目录部分,如果指定了 SUFFIX, 就 同时去掉SUFFIX(后缀).具体看示例吧。 bashname语法 Usage: basename NAME [SUFFIX] or: basename OPTION... NAME... 选项 作用 -s, -- 阅读全文
posted @ 2021-02-01 22:25 蕝戀 阅读(236) 评论(0) 推荐(0) 编辑
摘要: which和whereis命令作用 which:显示给定命令所在路径 whereis:相比which更完善,显示命令路径、man文件路径(如果有)、源代码路径 which语法 which [options] COMMAND *选项* *使用说明* --skip-alias 不显示别名 which示例 阅读全文
posted @ 2021-02-01 21:58 蕝戀 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 作用 Print the last 10 lines of each FILE to standard output. With more than one FILE, precede each with a header giving the file name. With no FILE, or 阅读全文
posted @ 2021-02-01 21:44 蕝戀 阅读(434) 评论(0) 推荐(0) 编辑
摘要: 作用 我直接搬运官方英文了,这英文真的简单直白了,我英语辣鸡...毕竟我学历不行,觉得翻译不好就直接自己来吧。。 Print the first 10 lines of each FILE to standard output. With more than one FILE, precede ea 阅读全文
posted @ 2021-02-01 21:30 蕝戀 阅读(364) 评论(0) 推荐(0) 编辑
摘要: less命令的作用 less和cat、more最大的差别在于不会一次性加载整个文件,速度比较快!另外less具备翻页功能,可以向上/向下翻页! 语法 less [选项] [文件名] *选项* *使用说明* -N 显示行号 进入less后按下以下按键能够使用更多less提供的功能: [pagedown 阅读全文
posted @ 2021-02-01 21:23 蕝戀 阅读(211) 评论(0) 推荐(0) 编辑