blob: e4a779126eaa84da566291e95e8f5d6c52f900e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/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'
|