long string using find and "-exec ls -ls" to find part-of filename
    Gary Kline 
    kline at thought.org
       
    Mon Jun 30 21:57:07 UTC 2014
    
    
  
=====
Organization: Thought Unlimited.  Public service Unix since 1986.
Of_Interest: With 27++ years  of service  to the  Unix  community.
On Mon, Jun 30, 2014 at 11:45:06AM -1000, Parv wrote:
> 
> If only one command to be run for each file, then xargs can be used
> with "-n" option to specify "the maximum number of arguments taken
> from standard input for each invocation" ...
> 
>   find ... | xargs -n 1 command ...
> 
> 
	how about whitespace?  ls -lsi appears as two cmds, so would
	it work as you  have with backtics?
	find ... | xargs -n 1 `ls -lsi` 
> 
-- 
 Gary Kline  kline at thought.org  http://www.thought.org  Public Service Unix
             Twenty-seven years of service to the Unix community.
    
    
More information about the freebsd-questions
mailing list