Expand PMF_FN_* macros.
[netbsd-mini2440.git] / games / fortune / tools / do_sort
blob7b56cc10ba829eacf66d7e389feef71752352d3d
1 #! /bin/sh
2 # $NetBSD$
4 # @(#)do_sort 8.1 (Berkeley) 5/31/93
6 # an aggressive little script for sorting the fortune files
7 # depends on octal 02 and 03 not being anywhere in the files.
9 sp="/usr/bin/sort -bdfu -T /var/tmp"
11 sed 's/^%$/\x02/' | tr '\12' '\3' | tr '\2' '\12' | $sp | sed 'a\
12 %' | sed -e 's/^\x03//' -e 's/\x03$//' | tr '\3' '\12'