[opensuse] file names ending with a space

2007-12-20 Thread Phil Burness
How can I identify file names that end with a space? Thanks Phil -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [opensuse] file names ending with a space

2007-12-20 Thread Patrick Shanahan
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 * Phil Burness [EMAIL PROTECTED] [12-20-07 16:16]: How can I identify file names that end with a space? filename - -- Patrick Shanahan Plainfield, Indiana, USAHOG # US1244711 http://wahoo.no-ip.org Photo Album:

Re: [opensuse] file names ending with a space

2007-12-20 Thread Randall R Schulz
On Thursday 20 December 2007 13:05, Phil Burness wrote: How can I identify file names that end with a space? % find directoryName -name '* ' This will recurse arbitrarily deeply into your directory structure starting at directoryName. If you want to limit that, you can use the -maxdepth

Re: [opensuse] file names ending with a space

2007-12-20 Thread Anders Johansson
On Thursday 20 December 2007 22:05:34 Phil Burness wrote: How can I identify file names that end with a space? to find all of them find / -name \*\ (there should be a space after that last backslash) To see them easier in an ls output, you can use the -Q parameter to ls. It will put all

Re: [opensuse] file names ending with a space

2007-12-20 Thread Kai Ponte
On Thursday 20 December 2007 13:05, Phil Burness wrote: How can I identify file names that end with a space? Use beagle. /me ducks! -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [opensuse] file names ending with a space

2007-12-20 Thread Randall R Schulz
On Thursday 20 December 2007 18:16, Kai Ponte wrote: On Thursday 20 December 2007 13:05, Phil Burness wrote: How can I identify file names that end with a space? Use beagle. Beagle is more about file _content_ than names. The locate utility is more than adequate for finding files by name.