Bram Schoenmakers <[EMAIL PROTECTED]> wrote:
> The attached patch adds -t or --target-directory support for split, specifying
> in which directory the split files should go into.
>
> The usecase for this when receiving a big file over a network, but you don't
> have diskspace for the file itself and its splitted version. Now, you can do
> things like this:
>
> cat some_big_file | ssh [EMAIL PROTECTED] split -t /home/bram/tmp/

Thanks for the suggestion and patch,
but you can already do that portably:

  cat some_big_file | ssh [EMAIL PROTECTED] 'sh -c "cd /home/bram/tmp; split"'


_______________________________________________
Bug-coreutils mailing list
Bug-coreutils@gnu.org
http://lists.gnu.org/mailman/listinfo/bug-coreutils

Reply via email to