mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2026-02-08 10:46:42 +08:00
12 lines
130 B
Bash
12 lines
130 B
Bash
#!/bin/bash
|
|
|
|
cd $DEMO_HOME/
|
|
|
|
if [[ "$ROLE" == 's' ]]; then
|
|
# run server
|
|
./build/bin/kvs s
|
|
else
|
|
# run client
|
|
sleep 3600
|
|
fi
|