rns-simulator/Utilities/start_nodes.sh

11 lines
91 B
Bash

#!/bin/bash
mkdir -p nodes
cd nodes
for dir in *; do
rnsd --config $dir &
done
wait