Re: [dev] [sbase] find and xargs different results than busybox

2018-07-17 Thread Eric Pruitt
On Tue, Jul 17, 2018 at 07:05:43AM -0700, Evan Gates wrote: > find -print0 is not specified by POSIX. If you want to print nul > separated data use: The suckless tools don't strictly follow POSIX. For example, sbase mv(1) and cp(1) don't support "-i". Furthermore it's pretty portable; find(1) on O

Re: [dev] [sbase] find and xargs different results than busybox

2018-07-17 Thread Evan Gates
On Sun, Jul 15, 2018 at 12:41 PM andremw wrote: > -find /home/user -type d -print0 | xargs -0 chmod 0775 > -find /home/user -type f -print0 | xargs -0 chmod 0664 > > In busybox they work, in sbase they return- > -find: paths must precede expression: -print0 > -usage: xargs [-rtx] [-E eofstr] [-n n