srv/make-release
Circling Skies 847c11ad95 Writes index in the UNIX way.
Adds support for TAGS in noweb files.

I really don't know whether the above is complete or not.
2025-09-19 20:13:56 -03:00

15 lines
147 B
Bash
Executable file

#!/bin/sh
usage()
{
printf 'usage: %s tag file\n' $0
exit 1
}
test $# -lt 2 && usage
tag="$1"; shift
sed "/a89e088=/ {
n;
c\\
$tag
}" "$@"