blob: 2245c90bb5da311927168b4d602b6f00143390c0 (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
tmux \
new-session "go run cmd/daemon/main.go -test -db test.db; read" \; \
split-window "sleep 1; go run cmd/client/main.go -u user1@localhost -p test; read" \; \
split-window "sleep 1; go run cmd/client/main.go -u user2@localhost -p test; read" \; \
split-window "sleep 1; go run cmd/client/main.go -u user3@localhost -p test; read" \; \
select-layout tiled;
|