Re: [coreutils] cp enhancement ?

2010-09-19 Thread Leon Free
Le 18/09/2010 14:47, Nikanth K a écrit : > On Sat, Sep 18, 2010 at 1:59 PM, Leon Free wrote: >> >> Hi coreutils list >> >> Google didnt help me much about that : I'm looking some functionality to >> the cp util that prints a progress bar (===...==>), % copied, ETA, etc >> when copying large files.

Re: [coreutils] cp enhancement ?

2010-09-19 Thread Bob Proulx
Leon Free wrote: > Google didnt help me much about that : I'm looking some functionality to > the cp util that prints a progress bar (===...==>), % copied, ETA, etc > when copying large files. Any suggestion ? The 'rsync' command provides progress information. $ rsync -P srcfile dstfile Bob

[coreutils] Re: [PATCH] join: support multi-byte character encodings

2010-09-19 Thread Bruno Haible
Hi Pádraig, > This is my start at applying robust and efficient multi-byte > processing to coreutils. Actually, it is the continuation of the discussion and based on the patch from March 2009 . What has changed since then? A

Re: [coreutils] [PATCH] tests: fix a printf portability issue

2010-09-19 Thread Pádraig Brady
On 19/09/10 07:50, Jim Meyering wrote: > Pádraig Brady wrote: >> not all printf commands support \xhh >> >> diff --git a/tests/misc/sort-debug-keys b/tests/misc/sort-debug-keys >> index 57a52a6..4e8beff 100755 >> --- a/tests/misc/sort-debug-keys >> +++ b/tests/misc/sort-debug-keys >> @@ -275,7 +275

Re: [coreutils] cp enhancement ?

2010-09-19 Thread Dmitry Ilyin
I made a patch to implement progress bar. It is very primitive (i'm new to c programming) --- a/src/copy.c2010-04-20 23:52:04.0 +0400 +++ b/src/copy.c2010-09-12 17:50:57.544775657 +0400 @@ -709,6 +709,20 @@ buf_alloc = xmalloc (buf_size + buf_alignment_slop);