This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Final iPhone Screenshot Script | |
| # Usage: ./iphone_screenshot.sh [output_path] | |
| OUTPUT_PATH="${1:-screenshot.png}" | |
| echo "📱 Taking iPhone screenshot..." | |
| # Record timestamp before taking screenshot |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| scan_dirs=(target build node_modules .dart_tool) | |
| usage() { | |
| local scan_dir | |
| cat <<'EOF' |
OlderNewer