Author: ersiner
Date: Tue Feb 7 06:40:25 2006
New Revision: 375614
URL: http://svn.apache.org/viewcvs?rev=375614&view=rev
Log:
Made the script sort the output.
Modified:
directory/trunks/sh-scripts/modules.sh
Modified: directory/trunks/sh-scripts/modules.sh
URL: http://svn.apache.org/viewcvs/directory/trunks/sh-scripts/modules.sh?rev=375614&r1=375613&r2=375614&view=diff
==============================================================================
--- directory/trunks/sh-scripts/modules.sh (original)
+++ directory/trunks/sh-scripts/modules.sh Tue Feb 7 06:40:25 2006
@@ -3,4 +3,4 @@
# This script lists the modules of a project looking
# at the pom whose name given as a parameter.
-xml_grep "/project/modules/module" $1 | grep '<module>.*</module>' | sed 's/.*>\(.*\)<.*/\1/g'
+xml_grep "/project/modules/module" $1 | grep '<module>.*</module>' | sed 's/.*>\(.*\)<.*/\1/g'
| sort
|