脚本
文章平均质量分 53
子燕若水
子燕若水
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
临时邮箱com
https://internxt.com/temporary-email原创 2025-10-24 21:21:38 · 195 阅读 · 0 评论 -
判断家宽的代码和prompt
【代码】判断家宽的代码和prompt。原创 2025-10-18 14:09:28 · 226 阅读 · 0 评论 -
下载grok的静态网页和脚本
【代码】下载grok的静态网页和脚本。原创 2025-10-05 08:35:30 · 285 阅读 · 0 评论 -
Playwright 完全指南:现代Web自动化测试利器
Playwright 是由微软开发的开源自动化测试框架,用于测试现代Web应用程序。它于2020年发布,由曾开发 Puppeteer 的团队打造,可以说是 Puppeteer 的"进化版"。Playwright 凭借其强大的功能、优雅的API和卓越的性能,正在成为Web自动化测试的首选工具。其核心优势包括:✅真正的跨浏览器支持- 一套代码,多端运行✅智能等待机制- 减少测试不稳定性✅强大的网络控制- 轻松实现API Mock✅现代化的开发体验- TypeScript支持,完善的IDE提示。原创 2025-10-04 21:28:40 · 855 阅读 · 0 评论 -
shell 数值比较大小
【代码】shell 数值比较大小。原创 2023-02-27 12:46:56 · 2554 阅读 · 0 评论 -
selenium python 如何操作cookies?
往浏览器放你程序中的cookies。获取浏览器中的cookies。原创 2022-08-22 11:24:24 · 688 阅读 · 0 评论 -
Fiddler过滤器(Filters)教程
无转载 2022-08-20 11:22:48 · 563 阅读 · 0 评论 -
Fiddler 插件 hook 参考代码
【代码】Fiddler 插件 hook 参考代码。原创 2022-08-19 13:18:48 · 1256 阅读 · 0 评论 -
fiddler更新后证书导出和报错的坑(The root certificate could not be located.)
下载地址:http://www.telerik.com/docs/default-source/fiddler/addons/fiddlercertmaker.exe?[在这里插入图片描述](https://img-blog.csdnimg.cn/51697593b12646d68d2d230c0167d402.png。1、首先确保安装的 Fiddler 是较新的版本,比较老的版本可能会出现安装不上fiddler证书生成器的问题。(注:Fiddler 证书生成器只能在 Vista 以上系统运行)...原创 2022-08-19 10:20:24 · 1097 阅读 · 0 评论 -
selenium python 入门教程
2. Getting Started — Selenium Python Bindings 2 documentationIf you have installed Selenium Python bindings, you can start using it from Python like this.from selenium import webdriverfrom selenium.webdriver.common.keys import Keysfrom selenium.webdrive原创 2022-08-11 20:57:24 · 1886 阅读 · 0 评论 -
selenium.webdriver chrome驱动下载地址
代码】selenium.webdriver chrome驱动下载地址。原创 2022-08-11 20:52:05 · 1364 阅读 · 0 评论 -
msys2下用cmake构建poppler和libpng
CMake 使用实用工具链来编译、链接库和创建档案,以及驱动构建的其他任务。可用的工具链实用程序取决于启用的语言。在正常构建中,CMake 会根据系统自省和默认值自动确定主机构建的工具链。在交叉编译场景中,可以使用有关编译器和实用程序路径的信息指定工具链文件。DCMAKE_TOOLCHAIN_FILE指定一个文件被提前加载来设置编译器相关参数值。toolchain-mingw32.cmake# Sample toolchain file for building.## Typica原创 2022-01-14 20:49:26 · 898 阅读 · 0 评论 -
bash 脚本重定向写文件> , >>
One of the most common tasks when writing Bash scripts or working on the Linux command line is reading and writing files.This article explains how to write text to a file in Bash, using the redirection operators andteecommand.Writing to a File using ..转载 2022-01-13 19:57:13 · 855 阅读 · 0 评论 -
Bash中${}和$()之间的区别
The syntax is token-level, so the meaning of the dollar sign depends on the token it's in. The expression$(command)is a modern synonym for`command`which stands for command substitution; it means runcommandand put its output here. Soecho "Today is ...转载 2022-01-13 18:54:34 · 183 阅读 · 0 评论 -
bash脚本比较运算符和if else和test命令
来自于这个课本:Advanced Bash-Scripting Guide: 详细参考链接:Other Comparison Operatorshttps://tldp.org/LDP/abs/html/comparison-ops.html原创 2022-01-13 14:49:55 · 511 阅读 · 0 评论 -
bash shell set 命令
原始链接:set Man Page - Linux - SS64.comhttps://ss64.com/bash/set.htmlsetChange the value of a shell option and set the positional parameters, or display the names and values of shell variables.Syntax set [--abefhkmnptuvxBCEHPT] [-o option-name] [转载 2022-01-13 14:25:19 · 388 阅读 · 0 评论 -
bash 脚本中调用另一个脚本
Source the 2nd script, i.e. . test2.sh and it will run in the same shell. This would let you share more complex variables like arrays easily, but also means that the other script could modify variables in the source shell.. (a period). filename [argum原创 2022-01-13 14:22:16 · 883 阅读 · 0 评论 -
shell脚本-从路径提取文件名、后缀
pax> a=/tmp/xx/file.tar.gzpax> xpath=${a%/*} pax> xbase=${a##*/}pax> xfext=${xbase##*.}pax> xpref=${xbase%.*}pax> echo;echo path=${xpath};echo pref=${xpref};echo ext=${xfext}path=/tmp/xxpref=file.tarext=gz#!/bin/bashHQ_DIR='.原创 2020-09-17 22:29:04 · 21267 阅读 · 0 评论 -
shell 脚本里面的数组和遍历
1、shell数组的创建array_name=(value1 value2 … valuen)或array_name[0]=value0array_name[1]=value1array_name[2]=value22、shell数组的索引${array_name[index]}my_array=(A B "C" D) echo "第一个元素为: ${my_array[0]}"3、shell数组所有值的表示my_array=(A B "C" D)echo..原创 2020-09-04 17:15:49 · 827 阅读 · 0 评论 -
shell 脚本里面的特殊变量
Sr.No. Variable & Description 1 $0 The filename of the current script. 2 $n These variables correspond to the arguments with which a script was invoked. Herenis a positive decimal number corresponding to the position ..原创 2020-09-04 16:35:51 · 303 阅读 · 0 评论
分享