9 lines
205 B
Bash
Executable File
9 lines
205 B
Bash
Executable File
#!/bin/bash
|
|
# Start the sender on this machine
|
|
# Usage: ./sender.sh RECEIVER_IP [PORT]
|
|
set -euo pipefail
|
|
|
|
PROJECT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
|
|
|
|
exec sudo "$PROJECT_DIR/sender/stream_av.sh" "$@"
|