mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
32 lines
806 B
Bash
Executable File
32 lines
806 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
usage() {
|
|
echo "Usage: $0 <device-udid> <bundle-id> [dest]" >&2
|
|
echo " OPENCLAW_IOS_DEVICE_UDID=... OPENCLAW_IOS_BUNDLE_ID=... $0" >&2
|
|
}
|
|
|
|
DEVICE_UDID="${1:-${OPENCLAW_IOS_DEVICE_UDID:-}}"
|
|
BUNDLE_ID="${2:-${OPENCLAW_IOS_BUNDLE_ID:-}}"
|
|
DEST="${3:-${OPENCLAW_IOS_GATEWAY_LOG_DEST:-}}"
|
|
|
|
if [[ -z "$DEVICE_UDID" || -z "$BUNDLE_ID" ]]; then
|
|
usage
|
|
exit 2
|
|
fi
|
|
|
|
if [[ -z "$DEST" ]]; then
|
|
dest_dir="$(mktemp -d "${TMPDIR:-/tmp}/openclaw-ios-gateway.XXXXXX")"
|
|
DEST="$dest_dir/openclaw-gateway.log"
|
|
fi
|
|
|
|
xcrun devicectl device copy from \
|
|
--device "$DEVICE_UDID" \
|
|
--domain-type appDataContainer \
|
|
--domain-identifier "$BUNDLE_ID" \
|
|
--source Documents/openclaw-gateway.log \
|
|
--destination "$DEST" >/dev/null
|
|
|
|
echo "Pulled to: $DEST"
|
|
tail -n 200 "$DEST"
|