> The problem with find | xargs is that it doesn't handle quotes in file > system names
... which can be solved with find -print0 | xargs -0: [EMAIL PROTECTED] /tmp% find . -name f* -print0 | xargs -0 echo ./f"oo -- Alex --~--~---------~--~----~------------~-------~--~----~ To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/capistrano -~----------~----~----~----~------~----~------~--~---
