#!/bin/sh

# Reverse the order of the paragraphs (blocks of characters separated
# from others by at least two consecutive carriage returns) of the
# standard input and place the result on standard output.  Instead of
# standard input, you may use the results of concatenating a bunch of
# files by giving them as command line arguments.

cat $* | packpars | tac | unpackpars
