rev 10352 - scripts

Armin Berres trigger-guest at alioth.debian.org
Mon Apr 28 22:41:31 UTC 2008


Author: trigger-guest
Date: 2008-04-28 22:41:30 +0000 (Mon, 28 Apr 2008)
New Revision: 10352

Added:
   scripts/sort-install-files
Log:
a script which stupidly sorts all files given on the command line. can be used to sort the *.install files of the package

Added: scripts/sort-install-files
===================================================================
--- scripts/sort-install-files	                        (rev 0)
+++ scripts/sort-install-files	2008-04-28 22:41:30 UTC (rev 10352)
@@ -0,0 +1,7 @@
+#!/bin/sh
+# simply sorts all files given on the command line
+
+for file in "$@"
+do
+  LOCALE=C sort -u ${file} | sponge ${file}
+done


Property changes on: scripts/sort-install-files
___________________________________________________________________
Name: svn:executable
   + *




More information about the pkg-kde-commits mailing list