标签: Shell

3 篇文章

thumbnail
AWS Light 一键DD重装系统
debian11 bash <(wget --no-check-certificate -qO- 'https://www.moeelf.com/attachment/LinuxShell/InstallNET.sh') -d 11 -v 64 -a --ip-addr 172.26.xx.xx --ip-gate 172…
thumbnail
NNR 定时重启规则shell脚本
SHELL 脚本 因为自己机器过多,CLASH的问题会导致IP上限,故写了这个脚本 main.sh mkdir -p ~/nnr-api cat > ~/nnr-api/main.sh << EOF #!/bin/bash # 环境判断 if [ -z "$(command -v jq)" ]; then if…
thumbnail
Shell 常用的变量与命令 (持续更新)
Path变量 # 当前执行的目录路径 path_dir="$PWD" # 当前执行的目录文件夹名称 name_dir="$(basename "${path_dir}")" # 当前执行的目录完整路径 work_dir="$(cd $(dirname $0);pwd)"…