mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
13 lines
235 B
Bash
Executable File
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!" |