Files
bun.sh/test/regression/issue/18239/data-generator.sh
2025-06-03 13:23:12 -07:00

13 lines
235 B
Bash
Executable File

#!/bin/bash
# Test data generator script
# Sends data with delays to simulate real-time input
echo "Generating test data with 200ms delay..."
for i in {1..3}; do
echo "Line $i - $(date)"
sleep 0.2
done
echo "All data sent!"