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