On Thu, May 12, 2005 at 05:39:40PM +0200, abou anass wrote: > How (and where) can I customize the output date format. > Instead of %Y%/%m/%d > I want just this : %d/%m You could reformat the output with sed(1), like so: rem -q -s | sed -e 's/^[0-9]\+\/\([0-9]\+\)\/\([0-9]\+\)/\2\/\1/g' Paul