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