#!/bin/sh
# script/projectname: output the name of this project. Our extension to
# scripts-to-rule-them-all. Scripts that need the name (e.g. script/docker)
# call this so they stay identical across repos.
set -eu

main() {
	echo "rtnetmon"
}

main "$@"
