推荐顺序由上到下:
- AgentNEO —— https://neoproxy.me/ (在用)
- V2Club
- tapfog —— https://tapfog.com/ (6 块钱一个月,很便宜了)
- 艾可云 —— https://www.v2aky.com/
- 一元机场
- Myssr
| https://www.v2aky.com/#/register?code=wFPA8fv7 | |
| Limited-A4 |
推荐顺序由上到下:
| #!/bin/bash | |
| dir=${1:-.} | |
| dirs=`find $dir -not -path '*/.*' -not -path './venv' -type d -maxdepth 1` | |
| for d in $dirs; do | |
| cnt=`find $d -type f -exec wc -l {} + | awk '{s+=$1} END {print s}'` | |
| echo -e "$cnt\t$d/" | |
| done | sort -nr |
** 由于此文年事已久,可能某些 URL Schemes 已失效,可在评论区留言指出!(最后更新于 2024.10.28)
由于苹果的各应用都是在沙盒中,不能够互相之间访问或共享数据。但是苹果还是给出了一个可以在 APP 之间跳转的方法:URL Scheme。简单的说,URL Scheme 就是一个可以让 APP 相互之间可以跳转的协议。每个 APP 的 URL Scheme 都是不一样的,如果存在一样的 URL Scheme,那么系统就会响应先安装那个 APP 的 URL Scheme,因为后安装的 APP 的 URL Scheme 被覆盖掉了,是不能被调用的。