#!/bin/bash # ETL运行脚本 # 加载环境变量 if [ -f .env ]; then export $(cat .env | grep -v '^#' | xargs) fi # 运行ETL python -m cli.main "$@"