[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

[PATCH] Remove an old script from the "tools" directory

From: Julian Foad <julianfoad_at_btopenworld.com>
Date: 2006-02-06 21:19:09 CET

Any objections to removing tools/dev/find-textfiles.sh?

- Julian

Remove an old script from the "tools" directory. It only printed a list of
files whose MIME type contained "text", and it hasn't known the correct name
of Subversion admin dirs since way before version 1.0, so can't be in use.

* tools/dev/find-textfiles.sh
  Deleted.

Index: tools/dev/find-textfiles.sh
===================================================================
--- tools/dev/find-textfiles.sh (revision 18347)
+++ tools/dev/find-textfiles.sh (working copy)
@@ -1,18 +0,0 @@
-#!/bin/sh
-#
-# USAGE: find-textfiles SVN-WC
-#
-# A list of text files will be generated to STDOUT.
-#
-
-if test $# != 1; then
- echo USAGE: find-textfiles SVN-WC
- exit 1
-fi
-
-for f in `find $1 -type f | fgrep -v /SVN/`; do
- mime="`file -i $f | fgrep text`"
- if test "$mime" != ""; then
- echo $f
- fi
-done

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Mon Feb 6 21:20:16 2006

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.