11 lines
289 B
Bash
11 lines
289 B
Bash
|
|
# !/bin/bash
|
||
|
|
|
||
|
|
NWID=""
|
||
|
|
|
||
|
|
mkdir -p test/alice test/bob test/carol test/ted
|
||
|
|
|
||
|
|
./build/darwin/selftest generate_id ${NWID} test/alice
|
||
|
|
./build/darwin/selftest generate_id ${NWID} test/bob
|
||
|
|
./build/darwin/selftest generate_id ${NWID} test/carol
|
||
|
|
./build/darwin/selftest generate_id ${NWID} test/ted
|