#!/bin/bash set -o pipefail # Remove the boxing around raw nova output data nova "$@" | sed \ -e '1,3d' \ -e '$d' \ -e 's/^| //' \ -e 's/[[:space:]]*|$//' \ -e 's/[[:space:]]*|[[:space:]]*/\t/g'