Files
PolyORB/utils/sort_MANIFEST
Thomas Quinot 3e3c82f66f Ensure MANIFEST is exempt of duplicates.
[Imported from Perforce change 9863 at 2006-12-01 22:21:02]

Subversion-branch: /trunk/polyorb
Subversion-revision: 37328
2006-02-02 11:59:43 +00:00

11 lines
188 B
Bash
Executable File

#! /bin/sh
# Sort MANIFEST in (C locale) ascending order
# $Id$
unset LANG LC_ALL LC_COLLATE
set -e
tmpf=MANIFEST.$$
trap 'rm -f $tmpf' 0
cp MANIFEST $tmpf
sort < $tmpf | uniq > MANIFEST