Skip to content

Commit

Permalink
Chinese pages: separate English and Chinese letters
Browse files Browse the repository at this point in the history
  • Loading branch information
bl-ue committed Mar 19, 2021
1 parent 6438afd commit 4dc03a3
Show file tree
Hide file tree
Showing 23 changed files with 60 additions and 60 deletions.
2 changes: 1 addition & 1 deletion pages.zh/common/aapt.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

`aapt list {{路径/到/应用.apk}}`

- 查看APK包内指定的内容 (版本, 权限许可等):
- 查看 APK 包内指定的内容 (版本, 权限许可等):

`aapt dump badging {{路径/到/应用.apk}}`

Expand Down
12 changes: 6 additions & 6 deletions pages.zh/common/act.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
# act

> 使用Docker本地运行GitHub Actions
> 使用 Docker 本地运行 GitHub Actions
> 更多信息:<https://github.com/nektos/act>.
- 列出可用的actions清单:
- 列出可用的 actions 清单:

`act -l`

- 运行默认event:
- 运行默认 event:

`act`

- 运行指定event:
- 运行指定 event:

`act {{事件类型}}`

- 运行指定action:
- 运行指定 action:

`act -a {{action_id}}`

- 非实际运行actions (也就是dry-run模式):
- 非实际运行 actions (也就是 dry-run 模式):

`act -n`

Expand Down
10 changes: 5 additions & 5 deletions pages.zh/common/adb-install.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# adb install

> 安卓调试桥-Install: 将应用安装包推送到Android模拟器或已连接的安卓设备.
> 安卓调试桥 -Install: 将应用安装包推送到 Android 模拟器或已连接的安卓设备.
> 更多信息:<https://developer.android.com/studio/command-line/adb>.
- 向模拟器/设备推送安卓app:
- 向模拟器/设备推送安卓 app:

`adb install {{路径/到/应用.apk}}`

- 重装app, 保持原有数据:
- 重装 app, 保持原有数据:

`adb install -r {{路径/到/应用.apk}}`

- 授予app manifest中列举的所有权限许可:
- 授予 app manifest 中列举的所有权限许可:

`adb install -g {{路径/到/应用.apk}}`

- 快速部署模式,仅更新APK更改过的部分:
- 快速部署模式,仅更新 APK 更改过的部分:

`adb install --fastdeploy {{路径/到/应用.apk}}`
6 changes: 3 additions & 3 deletions pages.zh/common/adb-reverse.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@

`adb reverse —list`

- 将TCP端口从安卓模拟器或设备中映射到localhost:
- 将 TCP 端口从安卓模拟器或设备中映射到 localhost:

`adb reverse tcp:{{远程端口}} tcp:{{本地端口}}`

- 从安卓模拟器或设备移除一个反向socket连接:
- 从安卓模拟器或设备移除一个反向 socket 连接:

`adb reverse --remove tcp:{{远程端口}}`

- 从安卓模拟器或设备移除所有反向socket连接:
- 从安卓模拟器或设备移除所有反向 socket 连接:

`adb reverse --remove-all`
8 changes: 4 additions & 4 deletions pages.zh/common/androguard.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# androguard

> 使用python编写的一款针对安卓应用的逆向工程工具.
> 使用 python 编写的一款针对安卓应用的逆向工程工具.
> 更多信息:<https://github.com/androguard/androguard>.
- 展示Android manifest清单文件:
- 展示 Android manifest 清单文件:

`androguard axml {{路径/至/应用.apk}}`

- 展示app元数据 (版本和app ID):
- 展示 app 元数据 (版本和 app ID):

`androguard apkid {{路径/至/应用.apk}}`

- 反编译Java代码:
- 反编译 Java 代码:

`androguard decompile {{路径/至/应用.apk}} --output {{路径/至/目录}}`
4 changes: 2 additions & 2 deletions pages.zh/common/apktool.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# apktool

> APK文件反编译工具
> APK 文件反编译工具
> 更多信息:<https://ibotpeaches.github.io/Apktool/>.
- 反编译:

`apktool d {{应用.apk}}`

- 将一个文件夹打包为apk文件:
- 将一个文件夹打包为 apk 文件:

`apktool b {{路径/到/目录}}`

Expand Down
2 changes: 1 addition & 1 deletion pages.zh/common/asdf.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# asdf

> 可扩展的包版本管理器,支持Nodejs,Ruby,Elixir,Erlang等.
> 可扩展的包版本管理器,支持 Nodejs、 RubyElixir、和 Erlang 等.
> 更多信息:<https://asdf-vm.com>.
- 可用插件清单:
Expand Down
6 changes: 3 additions & 3 deletions pages.zh/common/autoflake.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# autoflake

> 一个工具,用于检查python代码中未被使用的引入和变量.
> 一个工具,用于检查 Python 代码中未被使用的引入和变量.
> 更多信息:<https://github.com/myint/autoflake>.
- 移除指定文件中未使用的变量,并展示diff:
- 移除指定文件中未使用的变量,并展示 diff:

`autoflake --remove-unused-variables {{文件.py}}`

- 移除多个文件中未使用的引入,并展示diffs:
- 移除多个文件中未使用的引入,并展示 diffs:

`autoflake --remove-all-unused-imports {{文件1.py}} {{文件2.py}} {{文件3.py}}`

Expand Down
6 changes: 3 additions & 3 deletions pages.zh/common/autojump.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# autojump

> 快速跳转,访问次数最多的文件夹优先.
> 使用j、jc、jo作为别名.
> 使用 `j``jc`、和 `jo` 作为别名.
> 更多信息:<https://github.com/wting/autojump>.
- 跳转到包含指定通配符的目录:
Expand All @@ -16,10 +16,10 @@

`jo {{通配符表达式}}`

- 从autojump数据库中删除不存在的目录:
- 从 autojump 数据库中删除不存在的目录:

`j --purge`

- 展示autojump数据库数据:
- 展示 autojump 数据库数据:

`j -s`
4 changes: 2 additions & 2 deletions pages.zh/common/axel.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# axel

> 一款下载加速器.
> 支持HTTP, HTTPS, 和 FTP.
> 支持 HTTP、 HTTPS、和 FTP.
> 更多信息:<https://github.com/axel-download-accelerator/axel>.
- 链接下载:
Expand All @@ -20,6 +20,6 @@

`axel -S {{镜像数量}}} {{超链接}}`

- 限制下载速度 (字节bite每秒):
- 限制下载速度 (字节 bite 每秒):

`axel -s {{字节数}} {{超链接}}`
4 changes: 2 additions & 2 deletions pages.zh/common/babel.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# babel

> 一款JavaScript的编译器,将下一代ES语法转换为兼容语法
> 一款 JavaScript 的编译器,将下一代 ES 语法转换为兼容语法
> 更多信息:<https://babeljs.io/>.
- 转编译指定文件到标准输出:
Expand All @@ -15,7 +15,7 @@

`babel {{路径/到/输入文件}} --watch`

- 转编译整个目录下的js文件:
- 转编译整个目录下的 js 文件:

`babel {{路径/到/输入文件目录}}`

Expand Down
2 changes: 1 addition & 1 deletion pages.zh/common/base32.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# base32

> 将文件或标准输入编码到Base32或从Base32解码为标准输出
> 将文件或标准输入编码到 Base32 或从 Base32 解码为标准输出
- 编码一个文件:

Expand Down
2 changes: 1 addition & 1 deletion pages.zh/common/base64.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# base64

> 将文件或标准输入编码到Base64或从Base64解码为标准输出
> 将文件或标准输入编码到 Base64 或从 Base64 解码为标准输出
- 编码一个文件:

Expand Down
4 changes: 2 additions & 2 deletions pages.zh/common/bat.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# bat

> 可以打印并且合并文件的命令.
> `cat`的复制品,外加无法高亮和git集成.
> `cat` 的复制品,外加无法高亮和 Git 集成.
> 更多信息:<https://github.com/sharkdp/bat>.
- 文件内容打印:
Expand All @@ -20,7 +20,7 @@

`bat -n {{文件}}`

- 高亮一个json文件:
- 高亮一个 `json` 文件:

`bat --language json {{文件.json}}`

Expand Down
4 changes: 2 additions & 2 deletions pages.zh/common/behat.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# behat

> 基于Behaviour-Driven Development的自动化测试PHP框架
> 基于 Behaviour-Driven Development 的自动化测试 PHP 框架
> 更多信息:<https://behat.org>.
- 初始化一个PHP behat项目:
- 初始化一个 PHP behat 项目:

`behat --init`

Expand Down
4 changes: 2 additions & 2 deletions pages.zh/common/bg.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# bg

> 恢复被挂起的任务 (如. 使用 `Ctrl + Z`), 使它们在后台运行.
> 恢复被挂起的任务 (如. 使用 Ctrl + Z), 使它们在后台运行.
- 恢复最近被挂起的任务,在后台运行:

`bg`

- 恢复特定的任务 (使用 `jobs -l` 可以获取任务ID) 并在后台运行:
- 恢复特定的任务 (使用 `jobs -l` 可以获取任务 ID) 并在后台运行:

`bg %{{job_id}}`
6 changes: 3 additions & 3 deletions pages.zh/common/bmaptool.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
- 使用图片生成块图文件:

`bmaptool create -o {{blockmap格式文件.bmap}} {{图片文件}}`
`bmaptool create -o "{{blockmap 格式文件.bmap}}" {{图片文件}}`

- 复制图片到指定目录:

`bmaptool copy --bmap {{blockmap格式文件}} {{图片文件}} {{/开发路径/sdb}}`
`bmaptool copy --bmap "{{blockmap 格式文件}}" {{图片文件}} {{/开发路径/sdb}}`

- 复制压缩后的图片到指定目录:

`bmaptool copy --bmap {{blockmap格式文件}} {{图片文件.gz}} {{/开发路径/sdb}}`
`bmaptool copy --bmap "{{blockmap 格式文件}}" {{图片文件.gz}} {{/开发路径/sdb}}`

- 复制图片的时候,不将图片转成块图:

Expand Down
16 changes: 8 additions & 8 deletions pages.zh/common/bower.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
# bower

> 前端web开发的包管理优化工具
> 一个包可以是GitHub中user/repo的缩写,一个Git端口,一个URL链接或者一个已注册的包
> 前端 web 开发的包管理优化工具
> 一个包可以是 GitHub 中 user/repo 的缩写,一个 Git 端口,一个 URL 链接或者一个已注册的包
> 更多信息:<https://bower.io/>.
- 安装列在项目下 的bower.json文件中的依赖:
- 安装列在项目下 `bower.json` 文件中的依赖:

`bower install`

- 安装一个或者多个依赖到bower_components目录:
- 安装一个或者多个依赖到 `bower_components` 目录:

`bower install {{包名1}} {{包名2}}`

- 从本地的bower_components目录卸载依赖
- 从本地的 `bower_components` 目录卸载依赖

`bower uninstall {{包名1}} {{包名2}}`

- 列出本地包和可能的更新项:

`bower list`

- 显示bower指令的帮助信息:
- 显示 bower 指令的帮助信息:

`bower help {{指令}}`

- 创建你的项目的bower.json:
- 创建你的项目的 `bower.json`:

`bower init`

- 安装时候指定依赖的版本号,并添加到bower.json:
- 安装时候指定依赖的版本号,并添加到 `bower.json`:

`bower install {{local_name}}={{package}}#{{version}} --save`
2 changes: 1 addition & 1 deletion pages.zh/common/browser-sync.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

`browser-sync start --server {{路径/到/目录}} --files {{路径/到/目录}}`

- 启动当前目录服务,同时监听指定目录下css文件的变动
- 启动当前目录服务,同时监听指定目录下 `css` 文件的变动

`browser-sync start --server --files '{{路径/到/目录/*.css}}'`

Expand Down
2 changes: 1 addition & 1 deletion pages.zh/common/btm.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# btm

> 命令行`top`的替代品.
> `top更轻便,支持跨平台、图表更丰富`.
> `top` 更轻便,支持跨平台、图表更丰富.
> 更多信息:<https://github.com/ClementTsang/bottom>.
- 展示默认布局 (cpu, 内存, 温度, 磁盘, 网络和 进程):
Expand Down
6 changes: 3 additions & 3 deletions pages.zh/common/buku.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@

- 删除一个书签:

`buku --delete {{书签id}}`
`buku --delete "{{书签 id}}"`

- 打开编辑器,修改书签:

`buku --write {{书签id}}`
`buku --write "{{书签 id}}"`

- 将指定标签移除:

`buku --update {{书签id}} --tag {{-}} {{搜索引擎}}`
`buku --update "{{书签 id}}" --tag {{-}} {{搜索引擎}}`
2 changes: 1 addition & 1 deletion pages.zh/common/cat.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@

`cat -n {{file}}`

- 显示不可打印和空白的字符 (使用`M-` 前缀标记非ASCII字符):
- 显示不可打印和空白的字符 (使用 `M-` 前缀标记非 ASCII 字符):

`cat -v -t -e {{file}}`
6 changes: 3 additions & 3 deletions pages.zh/linux/flameshot.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# flameshot

> 带有gui界面的Screenshot工具,支持基本的图像编辑,例如文本,形状,颜色和imgur.
> 带有 gui 界面 的 Screenshot 工具,支持基本的图像编辑,例如文本,形状,颜色和 imgur.
> 更多信息:<https://flameshot.js.org>.
- 在GUI模式下启动Flameshot:
- 在 GUI 模式下启动 Flameshot:

`flameshot launcher`

Expand All @@ -19,6 +19,6 @@

`flameshot full --path {{path/to/directory}}`

- 将屏幕截图延迟N毫秒,然后输出到剪贴板:
- 将屏幕截图延迟 2000 毫秒,然后输出到剪贴板:

`flameshot full --delay {{2000}} --clipboard`

0 comments on commit 4dc03a3

Please sign in to comment.