annotate bin/acut @ 264:7886d7de5eed default tip

use cdb library directly, sequestration of cdb handle complete and working, nndb counts two loops now, one with and one without counting successes
author Henry S. Thompson <ht@inf.ed.ac.uk>
date Fri, 31 Jan 2025 13:31:02 +0000
parents 75e0d0013da0
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
17
75e0d0013da0 use awk for simple cut
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
1 #!/bin/bash
75e0d0013da0 use awk for simple cut
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
2 # Use awk to do cut -d whitespace
75e0d0013da0 use awk for simple cut
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
3 declare ff=("$@")
75e0d0013da0 use awk for simple cut
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
4 join_array() { local IFS=\$; echo "$*"; }
75e0d0013da0 use awk for simple cut
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
5 s=$(join_array "${ff[@]}")
75e0d0013da0 use awk for simple cut
Henry S. Thompson <ht@inf.ed.ac.uk>
parents:
diff changeset
6 awk '{print '\$${s/\$/,\$}\}