On Tue, Jun 14, 2005 at 03:44:32PM +0200, Vincent Danjean wrote: > cg-add test for the presence of the file to add with : > find "$@" -type f -print0 ... > This does not work is the file is a dangling symlink. Please, change > this line with : > find "$@" -type f -o -type l -print0 ... > or something similar
find "$@" \( -type f -o -type l \) -print0 ... will be much more useful Vincent -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

