zsh-users
 help / color / mirror / code / Atom feed
From: Mikael Magnusson <mikachu@gmail.com>
To: nix@myproxylists.com
Cc: zsh-users@zsh.org
Subject: Re: A hyphen bug or not?
Date: Fri, 18 Mar 2011 15:32:43 +0100	[thread overview]
Message-ID: <AANLkTimBkrj=PFb4XTdNarrnH=0nKERw-JTxQ3HcZ0GQ@mail.gmail.com> (raw)
In-Reply-To: <e26a5685bd1c61bc2c25f82c387ccb7c.squirrel@gameframe.net>

On 18 March 2011 15:15,  <nix@myproxylists.com> wrote:
> #!/bin/zsh
>
> emulate zsh
>
> R="-"
>
> echo "$R" # <--- its empty here as well !
>
> R=$(echo "$R" | base64)
> R=$(print ${R//$'\n'})
>
> echo "R: $R" # <--- this is wrong, it should be a hyphen -
>
> # When we change the "R" variable to a octal presentation of hyphen
>
> R="\055"
> R=$(echo "$R" | base64)
> R=$(print ${R//$'\n'})
>
> echo "R: $R" # <--- now it works and base64 decod returns a hyphen "-" as
> it should.
>
>
> How I can echo a hyphen without echoing octal?

Your problem is that echo actually interprets options, if you want to
echo arguments starting with a hyphen you should use echo - "arguments
here" (it's always safe to add the leading hyphen to separate options
from arguments). If you also don't want to interpret escapes, use echo
-E - "arguments here".

-- 
Mikael Magnusson


  reply	other threads:[~2011-03-18 14:32 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-03-18 14:15 nix
2011-03-18 14:32 ` Mikael Magnusson [this message]
2011-03-18 17:21   ` nix

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='AANLkTimBkrj=PFb4XTdNarrnH=0nKERw-JTxQ3HcZ0GQ@mail.gmail.com' \
    --to=mikachu@gmail.com \
    --cc=nix@myproxylists.com \
    --cc=zsh-users@zsh.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).