#!/usr/bin/env bash
f=/home/claude/amd-agent-downloads/CareTeamRosterByProvider.xlsx
echo "=== sharedStrings size ==="
unzip -l "$f" 2>/dev/null | grep -i sharedStrings
echo "=== zip contents ==="
unzip -l "$f" 2>/dev/null
echo "=== first 1500 chars of sharedStrings ==="
unzip -p "$f" xl/sharedStrings.xml 2>/dev/null | head -c 1500
echo ""
echo "=== END ==="
