Files
PolyORB/utils/sort_MANIFEST
Thomas Quinot a5f1f573c3 Also unset LC_ALL.
[Imported from Perforce change 8495 at 2006-12-01 20:34:49]

Subversion-branch: /trunk/polyorb
Subversion-revision: 36085
2004-09-02 14:35:27 +00:00

11 lines
181 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 > MANIFEST