https://github.com/garywill/BigSearch
[u]以 灵活又顺手 的方式 在(切换) 任意一个 或 (连续)多个 搜索引擎(或任意网站)进行搜索。[/u] 新手友好,专家满意。包括日常、娱乐及工作。
俱有 多搜索引擎工具 该有的基本功能,如:
- 内置 百度,Google,B站,Youtube,Github,淘宝 等
- GET/POST
| #!/bin/bash | |
| echo "nohup execute : $*" | |
| setsid -f nohup $* >/dev/null 2>&1 & | |
| sleep 1 | |
| disown -a | |
| sleep 1 | |
| exit |
| #!/bin/bash | |
| urldecode() { : "${*//+/ }"; echo -e "${_//%/\\x}"; } | |
| urldecode $1 |
| #!/bin/bash | |
| # 获取当前用户ID | |
| CURRENT_USER_ID=$(id -u) | |
| echo "CURRENT_USER_ID=$CURRENT_USER_ID" | |
| # 遍历/proc,找到属于当前用户,且 exec 指向 /usr/bin/plasmashell 的进程 | |
| for dir in /proc/*; do | |
| # echo "checking dir = $dir" | |
| if [ -d $dir ] && [[ $dir =~ /proc/[0-9]* ]]; then |
| #!/bin/bash | |
| TDIR=$(mktemp -d /dev/shm/imapread-XXXXX) | |
| cd "$TDIR" | |
| touch alias mutt_certificates mutthistory postponed sent signature | |
| mkdir Mail mbox spool tmp | |
| account="$1" | |
| declare -A server_addrs |
| #!/bin/bash | |
| echo -n -e "NOW: $(date)\n" | |
| echo | |
| git branch |more | |
| echo | |
| git status -suno | |
| echo | |
| case $1 in | |
| "log") |
| #!/bin/bash | |
| xargs -0 -L1 -a "$@" |
| <root> | |
| <skin> | |
| <text_color>16777215,10022341,16777215,16777215,16777215,16770992,16770992,16770992,16770992</text_color> | |
| <specify_each_item_color>0</specify_each_item_color> | |
| <skin_author>m</skin_author> | |
| <font name="Microsoft YaHei" size="8" style="0"/> | |
| <display_text> | |
| <up>上传 </up> | |
| <down>下载 </down> | |
| <cpu>CPU </cpu> |
| # On Linux PC | |
| # socat pty,link=/tmp/ttyV0,raw tcp:192.168.X.X:2000 | |
| # picocom /tmp/ttyV0 | |
| # esptool.py --before no_reset --after no_reset --port /tmp/ttyV0 | |
| # rshell -p /tmp/ttyV0 --buffer-size 5000 | |
| showTCP=False | |
| showUART=False | |
| try: |
https://github.com/garywill/BigSearch
[u]以 灵活又顺手 的方式 在(切换) 任意一个 或 (连续)多个 搜索引擎(或任意网站)进行搜索。[/u] 新手友好,专家满意。包括日常、娱乐及工作。
俱有 多搜索引擎工具 该有的基本功能,如:
| #!/bin/sh -e | |
| # modified from https://github.com/mikhirev/mozjwt | |
| # External dependencies: openssl. python3 | |
| ADDON='' ## write your addon here | |
| # obtain this values at https://addons.mozilla.org/en-US/developers/addon/api/key/ | |
| # secrets |