tailscale/lts
- 227 bytes
- View raw
1#!/usr/bin/env bash
2# Run a command on a locally running instance of tailscaled.
4set -o errexit
5set -o nounset
6set -o xtrace
8NAME="$1"
10cd ~/repos/oss
12./tool/go run ./cmd/tailscale \
13 --socket=/tmp/ts/$NAME/ts.sock "${@:2}"