#!/bin/sh # SPDX-License-Identifier: GPL-3.0-only set -e set -o pipefail neighbours="$(birdc -r show babel neighbors | tail -n +5 | awk '{ printf "%s%s%s", $1, $2, $3 }' )" echo -n "$neighbours" exit 0