├── .gitignore ├── .vscode └── settings.json ├── Instruction ├── clonetools.md ├── docs │ ├── .remarkrc │ ├── .textlint.terms.json │ ├── .textlintrc.js │ ├── .vuepress │ │ ├── config.js │ │ ├── enhanceApp.js │ │ └── public │ │ │ ├── favicon.ico │ │ │ └── images │ │ │ ├── dunwu-logo-100.png │ │ │ ├── dunwu-logo-200.png │ │ │ ├── dunwu-logo-50.png │ │ │ └── dunwu-logo.png │ ├── README.md │ ├── docker │ │ ├── README.md │ │ ├── docker-cheat-sheet.md │ │ ├── docker-compose.md │ │ ├── docker-dockerfile.md │ │ ├── docker-quickstart.md │ │ ├── docker.xmind │ │ ├── kubernetes.md │ │ └── service │ │ │ ├── docker-install-mysql.md │ │ │ └── docker-install-nginx.md │ ├── linux │ │ ├── cli │ │ │ ├── README.md │ │ │ ├── free.md │ │ │ ├── grep.md │ │ │ ├── iostat.md │ │ │ ├── iotop.md │ │ │ ├── linux-cli-dir.md │ │ │ ├── linux-cli-file-compress.md │ │ │ ├── linux-cli-file.md │ │ │ ├── linux-cli-hardware.md │ │ │ ├── linux-cli-help.md │ │ │ ├── linux-cli-net.md │ │ │ ├── linux-cli-software.md │ │ │ ├── linux-cli-system.md │ │ │ ├── linux-cli-user.md │ │ │ ├── scp.md │ │ │ ├── top.md │ │ │ ├── vmstat.md │ │ │ └── 命令行的艺术.md │ │ ├── expect.md │ │ ├── ops │ │ │ ├── README.md │ │ │ ├── crontab.md │ │ │ ├── firewalld.md │ │ │ ├── iptables.md │ │ │ ├── network-ops.md │ │ │ ├── ntp.md │ │ │ ├── samba.md │ │ │ ├── systemd.md │ │ │ ├── vim.md │ │ │ └── zsh.md │ │ └── soft │ │ │ ├── README.md │ │ │ ├── apollo │ │ │ ├── README.md │ │ │ └── apollo.xmind │ │ │ ├── elastic │ │ │ ├── README.md │ │ │ ├── elastic-beats.md │ │ │ ├── elastic-kibana.md │ │ │ ├── elastic-logstash.md │ │ │ └── elastic-quickstart.md │ │ │ ├── fastdfs.md │ │ │ ├── gitlab-ops.md │ │ │ ├── jdk-install.md │ │ │ ├── jenkins-ops.md │ │ │ ├── kafka-install.md │ │ │ ├── maven-install.md │ │ │ ├── mongodb-ops.md │ │ │ ├── nacos-install.md │ │ │ ├── nexus-ops.md │ │ │ ├── nodejs-install.md │ │ │ ├── rocketmq-install.md │ │ │ ├── svn-ops.md │ │ │ ├── tomcat-install.md │ │ │ └── yapi-ops.md │ ├── mac │ │ └── soft │ │ │ └── ruby-install.md │ └── package.json ├── downloader.md ├── fqcopy.md ├── sed编辑.md ├── swap.md └── wsl.md ├── LICENSE ├── README.md ├── cg_1key_dd.sh ├── cg_toolbox.sh ├── config ├── Caddyfile ├── cg_mount.sh ├── qbt_bat.zip ├── rclone-cgking1.service └── rsshub │ ├── 2048 │ └── bbs.js │ └── dsndsht23 │ └── index.js ├── fq └── vmess-ws.sh ├── image ├── backup01.jpg ├── chuizi.png ├── emby_menu.jpg ├── logo.jpg ├── mount_menu.jpg ├── sort_menu.jpg ├── swap_menu.jpg ├── toolbox_benchmark.jpg ├── toolbox_extend.jpg ├── toolbox_standard.jpg └── toolbox_startmenu.jpg ├── log └── 脚本日志存放位置 ├── logo.jpg ├── monitor └── monitor_traffic.sh ├── script ├── 1keydd │ └── cg_1keydd_lite.sh ├── box.sh ├── cg_caddy2.sh ├── cg_checksa.sh ├── cg_dl.sh ├── cg_emby.sh ├── cg_gdbak.sh ├── cg_gdbot.sh ├── cg_jellyfin.sh ├── cg_lookdisk.sh ├── cg_mount.sh ├── cg_pve.sh ├── cg_qbt.sh ├── cg_sort.sh ├── cg_sort_bak.sh ├── cg_swap.sh ├── cg_zsh_tmux.sh ├── gdbak.sh ├── script_option ├── sshport.sh └── vertex.sh └── tools ├── aria2cli.py ├── besttrace ├── color_check ├── fclone ├── fclone_arm64 └── fclone ├── getuserByFeiFan.exe ├── gotop ├── qb_password_gen └── status.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Instruction/clonetools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/clonetools.md -------------------------------------------------------------------------------- /Instruction/docs/.remarkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/.remarkrc -------------------------------------------------------------------------------- /Instruction/docs/.textlint.terms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/.textlint.terms.json -------------------------------------------------------------------------------- /Instruction/docs/.textlintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/.textlintrc.js -------------------------------------------------------------------------------- /Instruction/docs/.vuepress/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/.vuepress/config.js -------------------------------------------------------------------------------- /Instruction/docs/.vuepress/enhanceApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/.vuepress/enhanceApp.js -------------------------------------------------------------------------------- /Instruction/docs/.vuepress/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/.vuepress/public/favicon.ico -------------------------------------------------------------------------------- /Instruction/docs/.vuepress/public/images/dunwu-logo-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/.vuepress/public/images/dunwu-logo-100.png -------------------------------------------------------------------------------- /Instruction/docs/.vuepress/public/images/dunwu-logo-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/.vuepress/public/images/dunwu-logo-200.png -------------------------------------------------------------------------------- /Instruction/docs/.vuepress/public/images/dunwu-logo-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/.vuepress/public/images/dunwu-logo-50.png -------------------------------------------------------------------------------- /Instruction/docs/.vuepress/public/images/dunwu-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/.vuepress/public/images/dunwu-logo.png -------------------------------------------------------------------------------- /Instruction/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/README.md -------------------------------------------------------------------------------- /Instruction/docs/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/docker/README.md -------------------------------------------------------------------------------- /Instruction/docs/docker/docker-cheat-sheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/docker/docker-cheat-sheet.md -------------------------------------------------------------------------------- /Instruction/docs/docker/docker-compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/docker/docker-compose.md -------------------------------------------------------------------------------- /Instruction/docs/docker/docker-dockerfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/docker/docker-dockerfile.md -------------------------------------------------------------------------------- /Instruction/docs/docker/docker-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/docker/docker-quickstart.md -------------------------------------------------------------------------------- /Instruction/docs/docker/docker.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/docker/docker.xmind -------------------------------------------------------------------------------- /Instruction/docs/docker/kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/docker/kubernetes.md -------------------------------------------------------------------------------- /Instruction/docs/docker/service/docker-install-mysql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/docker/service/docker-install-mysql.md -------------------------------------------------------------------------------- /Instruction/docs/docker/service/docker-install-nginx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/docker/service/docker-install-nginx.md -------------------------------------------------------------------------------- /Instruction/docs/linux/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/cli/README.md -------------------------------------------------------------------------------- /Instruction/docs/linux/cli/free.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/cli/free.md -------------------------------------------------------------------------------- /Instruction/docs/linux/cli/grep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/cli/grep.md -------------------------------------------------------------------------------- /Instruction/docs/linux/cli/iostat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/cli/iostat.md -------------------------------------------------------------------------------- /Instruction/docs/linux/cli/iotop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/cli/iotop.md -------------------------------------------------------------------------------- /Instruction/docs/linux/cli/linux-cli-dir.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/cli/linux-cli-dir.md -------------------------------------------------------------------------------- /Instruction/docs/linux/cli/linux-cli-file-compress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/cli/linux-cli-file-compress.md -------------------------------------------------------------------------------- /Instruction/docs/linux/cli/linux-cli-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/cli/linux-cli-file.md -------------------------------------------------------------------------------- /Instruction/docs/linux/cli/linux-cli-hardware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/cli/linux-cli-hardware.md -------------------------------------------------------------------------------- /Instruction/docs/linux/cli/linux-cli-help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/cli/linux-cli-help.md -------------------------------------------------------------------------------- /Instruction/docs/linux/cli/linux-cli-net.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/cli/linux-cli-net.md -------------------------------------------------------------------------------- /Instruction/docs/linux/cli/linux-cli-software.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/cli/linux-cli-software.md -------------------------------------------------------------------------------- /Instruction/docs/linux/cli/linux-cli-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/cli/linux-cli-system.md -------------------------------------------------------------------------------- /Instruction/docs/linux/cli/linux-cli-user.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/cli/linux-cli-user.md -------------------------------------------------------------------------------- /Instruction/docs/linux/cli/scp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/cli/scp.md -------------------------------------------------------------------------------- /Instruction/docs/linux/cli/top.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/cli/top.md -------------------------------------------------------------------------------- /Instruction/docs/linux/cli/vmstat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/cli/vmstat.md -------------------------------------------------------------------------------- /Instruction/docs/linux/cli/命令行的艺术.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/cli/命令行的艺术.md -------------------------------------------------------------------------------- /Instruction/docs/linux/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/expect.md -------------------------------------------------------------------------------- /Instruction/docs/linux/ops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/ops/README.md -------------------------------------------------------------------------------- /Instruction/docs/linux/ops/crontab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/ops/crontab.md -------------------------------------------------------------------------------- /Instruction/docs/linux/ops/firewalld.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/ops/firewalld.md -------------------------------------------------------------------------------- /Instruction/docs/linux/ops/iptables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/ops/iptables.md -------------------------------------------------------------------------------- /Instruction/docs/linux/ops/network-ops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/ops/network-ops.md -------------------------------------------------------------------------------- /Instruction/docs/linux/ops/ntp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/ops/ntp.md -------------------------------------------------------------------------------- /Instruction/docs/linux/ops/samba.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/ops/samba.md -------------------------------------------------------------------------------- /Instruction/docs/linux/ops/systemd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/ops/systemd.md -------------------------------------------------------------------------------- /Instruction/docs/linux/ops/vim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/ops/vim.md -------------------------------------------------------------------------------- /Instruction/docs/linux/ops/zsh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/ops/zsh.md -------------------------------------------------------------------------------- /Instruction/docs/linux/soft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/soft/README.md -------------------------------------------------------------------------------- /Instruction/docs/linux/soft/apollo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/soft/apollo/README.md -------------------------------------------------------------------------------- /Instruction/docs/linux/soft/apollo/apollo.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/soft/apollo/apollo.xmind -------------------------------------------------------------------------------- /Instruction/docs/linux/soft/elastic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/soft/elastic/README.md -------------------------------------------------------------------------------- /Instruction/docs/linux/soft/elastic/elastic-beats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/soft/elastic/elastic-beats.md -------------------------------------------------------------------------------- /Instruction/docs/linux/soft/elastic/elastic-kibana.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/soft/elastic/elastic-kibana.md -------------------------------------------------------------------------------- /Instruction/docs/linux/soft/elastic/elastic-logstash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/soft/elastic/elastic-logstash.md -------------------------------------------------------------------------------- /Instruction/docs/linux/soft/elastic/elastic-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/soft/elastic/elastic-quickstart.md -------------------------------------------------------------------------------- /Instruction/docs/linux/soft/fastdfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/soft/fastdfs.md -------------------------------------------------------------------------------- /Instruction/docs/linux/soft/gitlab-ops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/soft/gitlab-ops.md -------------------------------------------------------------------------------- /Instruction/docs/linux/soft/jdk-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/soft/jdk-install.md -------------------------------------------------------------------------------- /Instruction/docs/linux/soft/jenkins-ops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/soft/jenkins-ops.md -------------------------------------------------------------------------------- /Instruction/docs/linux/soft/kafka-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/soft/kafka-install.md -------------------------------------------------------------------------------- /Instruction/docs/linux/soft/maven-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/soft/maven-install.md -------------------------------------------------------------------------------- /Instruction/docs/linux/soft/mongodb-ops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/soft/mongodb-ops.md -------------------------------------------------------------------------------- /Instruction/docs/linux/soft/nacos-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/soft/nacos-install.md -------------------------------------------------------------------------------- /Instruction/docs/linux/soft/nexus-ops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/soft/nexus-ops.md -------------------------------------------------------------------------------- /Instruction/docs/linux/soft/nodejs-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/soft/nodejs-install.md -------------------------------------------------------------------------------- /Instruction/docs/linux/soft/rocketmq-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/soft/rocketmq-install.md -------------------------------------------------------------------------------- /Instruction/docs/linux/soft/svn-ops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/soft/svn-ops.md -------------------------------------------------------------------------------- /Instruction/docs/linux/soft/tomcat-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/soft/tomcat-install.md -------------------------------------------------------------------------------- /Instruction/docs/linux/soft/yapi-ops.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/linux/soft/yapi-ops.md -------------------------------------------------------------------------------- /Instruction/docs/mac/soft/ruby-install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/mac/soft/ruby-install.md -------------------------------------------------------------------------------- /Instruction/docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/docs/package.json -------------------------------------------------------------------------------- /Instruction/downloader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/downloader.md -------------------------------------------------------------------------------- /Instruction/fqcopy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/fqcopy.md -------------------------------------------------------------------------------- /Instruction/sed编辑.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/sed编辑.md -------------------------------------------------------------------------------- /Instruction/swap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/swap.md -------------------------------------------------------------------------------- /Instruction/wsl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/Instruction/wsl.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/README.md -------------------------------------------------------------------------------- /cg_1key_dd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/cg_1key_dd.sh -------------------------------------------------------------------------------- /cg_toolbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/cg_toolbox.sh -------------------------------------------------------------------------------- /config/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/config/Caddyfile -------------------------------------------------------------------------------- /config/cg_mount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/config/cg_mount.sh -------------------------------------------------------------------------------- /config/qbt_bat.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/config/qbt_bat.zip -------------------------------------------------------------------------------- /config/rclone-cgking1.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/config/rclone-cgking1.service -------------------------------------------------------------------------------- /config/rsshub/2048/bbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/config/rsshub/2048/bbs.js -------------------------------------------------------------------------------- /config/rsshub/dsndsht23/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/config/rsshub/dsndsht23/index.js -------------------------------------------------------------------------------- /fq/vmess-ws.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/fq/vmess-ws.sh -------------------------------------------------------------------------------- /image/backup01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/image/backup01.jpg -------------------------------------------------------------------------------- /image/chuizi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/image/chuizi.png -------------------------------------------------------------------------------- /image/emby_menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/image/emby_menu.jpg -------------------------------------------------------------------------------- /image/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/image/logo.jpg -------------------------------------------------------------------------------- /image/mount_menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/image/mount_menu.jpg -------------------------------------------------------------------------------- /image/sort_menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/image/sort_menu.jpg -------------------------------------------------------------------------------- /image/swap_menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/image/swap_menu.jpg -------------------------------------------------------------------------------- /image/toolbox_benchmark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/image/toolbox_benchmark.jpg -------------------------------------------------------------------------------- /image/toolbox_extend.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/image/toolbox_extend.jpg -------------------------------------------------------------------------------- /image/toolbox_standard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/image/toolbox_standard.jpg -------------------------------------------------------------------------------- /image/toolbox_startmenu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/image/toolbox_startmenu.jpg -------------------------------------------------------------------------------- /log/脚本日志存放位置: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/logo.jpg -------------------------------------------------------------------------------- /monitor/monitor_traffic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/monitor/monitor_traffic.sh -------------------------------------------------------------------------------- /script/1keydd/cg_1keydd_lite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/script/1keydd/cg_1keydd_lite.sh -------------------------------------------------------------------------------- /script/box.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/script/box.sh -------------------------------------------------------------------------------- /script/cg_caddy2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/script/cg_caddy2.sh -------------------------------------------------------------------------------- /script/cg_checksa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/script/cg_checksa.sh -------------------------------------------------------------------------------- /script/cg_dl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/script/cg_dl.sh -------------------------------------------------------------------------------- /script/cg_emby.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/script/cg_emby.sh -------------------------------------------------------------------------------- /script/cg_gdbak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/script/cg_gdbak.sh -------------------------------------------------------------------------------- /script/cg_gdbot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/script/cg_gdbot.sh -------------------------------------------------------------------------------- /script/cg_jellyfin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/script/cg_jellyfin.sh -------------------------------------------------------------------------------- /script/cg_lookdisk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/script/cg_lookdisk.sh -------------------------------------------------------------------------------- /script/cg_mount.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/script/cg_mount.sh -------------------------------------------------------------------------------- /script/cg_pve.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/script/cg_pve.sh -------------------------------------------------------------------------------- /script/cg_qbt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/script/cg_qbt.sh -------------------------------------------------------------------------------- /script/cg_sort.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/script/cg_sort.sh -------------------------------------------------------------------------------- /script/cg_sort_bak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/script/cg_sort_bak.sh -------------------------------------------------------------------------------- /script/cg_swap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/script/cg_swap.sh -------------------------------------------------------------------------------- /script/cg_zsh_tmux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/script/cg_zsh_tmux.sh -------------------------------------------------------------------------------- /script/gdbak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/script/gdbak.sh -------------------------------------------------------------------------------- /script/script_option: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/script/script_option -------------------------------------------------------------------------------- /script/sshport.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/script/sshport.sh -------------------------------------------------------------------------------- /script/vertex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/script/vertex.sh -------------------------------------------------------------------------------- /tools/aria2cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/tools/aria2cli.py -------------------------------------------------------------------------------- /tools/besttrace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/tools/besttrace -------------------------------------------------------------------------------- /tools/color_check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/tools/color_check -------------------------------------------------------------------------------- /tools/fclone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/tools/fclone -------------------------------------------------------------------------------- /tools/fclone_arm64/fclone: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/tools/fclone_arm64/fclone -------------------------------------------------------------------------------- /tools/getuserByFeiFan.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/tools/getuserByFeiFan.exe -------------------------------------------------------------------------------- /tools/gotop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/tools/gotop -------------------------------------------------------------------------------- /tools/qb_password_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/tools/qb_password_gen -------------------------------------------------------------------------------- /tools/status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cgkings/script-store/HEAD/tools/status.sh --------------------------------------------------------------------------------