diff --git a/docs/index.md b/docs/index.md
index 82f631c..345c56e 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -22,7 +22,7 @@ hide:
diff --git a/docs/index.zh-Hant.md b/docs/index.zh-Hant.md
index b5a40ac..b1696bf 100644
--- a/docs/index.zh-Hant.md
+++ b/docs/index.zh-Hant.md
@@ -22,7 +22,7 @@ hide:
diff --git a/docs/other/example.md b/docs/other/example.md
new file mode 100644
index 0000000..c1b188d
--- /dev/null
+++ b/docs/other/example.md
@@ -0,0 +1,57 @@
+``` bash
+# !/bin/bash
+
+function install_docker() {
+ local region_code="$(curl -s ipinfo.io/country)"
+ local close_firewall="true" # close firewalld service and selinux (redhat systems need)
+ local source_docker_ce_address="mirrors.tencent.com/docker-ce" # global high availability address
+ local source_docker_ce_protocol="https"
+ local source_docker_registry_address=""
+
+ # judge network environment
+ if [[ "${region_code}" == "CN" ]]; then
+ local source_intranet_address=""
+ # use intranet source if possible
+ if [ -s "/sys/class/dmi/id/sys_vendor" ]; then
+ local sys_vendor="$(cat /sys/class/dmi/id/sys_vendor)"
+ if [[ "${sys_vendor}" == *"Alibaba"* ]]; then
+ source_intranet_address="mirrors.cloud.aliyuncs.com/docker-ce"
+ elif [[ "${sys_vendor}" == *"Huawei"* ]]; then
+ source_intranet_address="mirrors.myhuaweicloud.com/docker-ce"
+ elif [[ "${sys_vendor}" == *"Tencent"* ]]; then
+ source_intranet_address="mirrors.tencentyun.com/docker-ce"
+ elif [[ "${sys_vendor}" == *"Inspur"* ]]; then
+ source_intranet_address="mirrors.ivolces.com/docker-ce"
+ fi
+ else
+ cat /etc/motd | grep "Alibaba Cloud " -q
+ if [ $? -eq 0 ]; then
+ source_intranet_address="mirrors.cloud.aliyuncs.com/docker-ce"
+ fi
+ fi
+ # check connectivity
+ if [ -n "${source_intranet_address}" ]; then
+ if ping -c1 -W1 "${source_intranet_address%%/*}" >/dev/null 2>&1; then
+ source_docker_ce_address="${source_intranet_address}"
+ source_docker_ce_protocol="http"
+ fi
+ fi
+ source_docker_registry_address="docker.1ms.run"
+ else
+ source_docker_ce_address="download.docker.com"
+ source_docker_registry_address="registry.hub.docker.com"
+ fi
+
+ # run
+ bash <(curl -sSL https://linuxmirrors.cn/docker.sh) \
+ --source "${source_docker_ce_address}" \
+ --source-registry "${source_docker_registry_address}" \
+ --protocol "${source_docker_ce_protocol}" \
+ --close-firewall "${close_firewall}" \
+ --install-latest true \
+ --ignore-backup-tips \
+ --pure-mode
+}
+
+install_docker
+```
diff --git a/docs/other/index.en.md b/docs/other/index.en.md
index 41bf314..2f0ede7 100644
--- a/docs/other/index.en.md
+++ b/docs/other/index.en.md
@@ -104,22 +104,34 @@ hide:
Huawei Cloud EulerOS TencentOS Server Alibaba Cloud Linux" }
+- :material-weight-lifter:{ .lg .middle } __Powerful and unparalleled__
+
+ ---
+
+ One of the most practical open source operation and maintenance scripts on the entire network, with excellent performance
+
+- :material-compass-rose:{ .lg .middle } __Exquisite interactive design__
+
+ ---
+
+ An interactive command line interface that is easy to understand and use, way ahead of the competition
+
After years of technical accumulation and production environment testing, it has been widely praised by the community and deeply loved by developers. It is used by major companies.
+✨ After years of technical accumulation and production environment testing, it has been widely praised by the community and deeply loved by developers. It is used by major companies.
Huawei Cloud EulerOS TencentOS Server Alibaba Cloud Linux 等特制系统" }
+- :material-weight-lifter:{ .lg .middle } __功能强大、无以伦比__
+
+ ---
+
+ 全网最实用的开源运维脚本之一,性能卓越
+
+- :material-compass-rose:{ .lg .middle } __精妙绝伦的交互设计__
+
+ ---
+
+ 易于理解和使用的交互式命令行界面,遥遥领先
+