On Thu, Apr 07, 2005 at 07:06:49AM -0700, David Wilson wrote: > This is what I am trying > > dd if=/dev/sdb |split -b 640m | tee file1 > file2 Out of curiosity, why have the dd(1) there? Why not simply: split -b 640m /dev/sdb ?