Chris Lamb wrote:
> tags 489641 + patch
> thanks
>
> Patch attached.
> print_action()
> {
> - echo -e netenv: $* " ... \c"
> + printf "netenv: $* ... \c\n"
> }
?! what did you smoke that day Chris? :D
right version:
> print_action()
> {
> - echo -e netenv: $* " ... \c"
> + printf "netenv: $* ... "
> }
But even better:
> print_action()
> {
> - echo -e netenv: $* " ... \c"
> + printf "netenv: %s ... " "$*"
> }
>
>
> Regards,
>
Cheers!,
--
Atomo64 - Raphael
Please avoid sending me Word, PowerPoint or Excel attachments.
See http://www.gnu.org/philosophy/no-word-attachments.html
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]