151789Sbostic#! /bin/sh 251789Sbostic# 3*60799Sbostic# @(#)do_sort 8.1 (Berkeley) 05/31/93 451789Sbostic# 551789Sbostic# an aggressive little script for sorting the fortune files 651789Sbostic# depends on octal 02 and 03 not being anywhere in the files. 751789Sbostic 851789Sbosticsp="/usr/bin/sort -bdfu -T /var/tmp" 951789Sbostic 1051789Sbosticsed 's/^%$//' | tr '\12' '\3' | tr '\2' '\12' | $sp | sed 'a\ 1151789Sbostic %' | sed -e 's/^//' -e 's/$//' | tr '\3' '\12' 12