2014-06-12 10:05 GMT+02:00 walter harms <[email protected]>: > hi, > could you give a few word why you need that feature ?
It offers a 'find | xargs ...'-like functionality. It's faster, as it limits the number of execve() calls to one per '-exec +' parameter. > btw: > Why you choose a linked list ? It seems more simple to make a strin for all We don't know how many files are going to be found, instead of reallocing a char** it's better to just add new elements to a linked list. Best regards, Bartosz Golaszewski _______________________________________________ busybox mailing list [email protected] http://lists.busybox.net/mailman/listinfo/busybox
