14 lines
456 B
Bash
Executable File
14 lines
456 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# 切换到脚本所在目录,确保相对路径正确
|
|
cd "$(dirname "$0")"
|
|
|
|
echo "使用 request/proxy_settings.json 读取代理配置"
|
|
|
|
nohup python3 dls.py > dls.log 2>&1 & # 大律师
|
|
nohup python3 findlaw.py > findlaw.log 2>&1 & # 找法网
|
|
nohup python3 lawtime.py > lawtime.log 2>&1 & # 法律快车
|
|
nohup python3 six4365.py > six4365.log 2>&1 & # 律图
|
|
nohup python3 hualv.py > hualv.log 2>&1 & # 华律
|