feat: acquire-core full legacy C corpus (~2066 files, build-verified) + generator + inventory

This commit is contained in:
forge-bot 2026-07-18 11:24:15 +00:00
commit b96cf702ee
2897 changed files with 264970 additions and 0 deletions

20
scripts/vl_run_0001.sh Executable file
View file

@ -0,0 +1,20 @@
#!/bin/sh
# vl_run_0001.sh - 정합성 실행 러너 (easy)
# 사용법: vl_run_0001.sh <YYYYMMDD>
set -eu
BIZDATE="${1:-$(date +%Y%m%d)}"
APP_HOME="${APP_HOME:-/app/acquire-core}"
BIN="${APP_HOME}/bin"
LOG="${APP_HOME}/log/vl_run_0001_${BIZDATE}.log"
echo "[vl_run_0001] 정합성 처리 시작 date=${BIZDATE}"
if [ -x "${BIN}/vl_bt_0001" ]; then
"${BIN}/vl_bt_0001" "${BIZDATE}" "acquire@localhost" >> "${LOG}" 2>&1
RC=$?
else
echo "[vl_run_0001] 실행 파일 없음: ${BIN}/vl_bt_0001" >&2
RC=0
fi
echo "[vl_run_0001] 종료 rc=${RC}"
exit ${RC}