echo "\000root\@test.com\000root" | base64
echo "\000root\ [at] test.com\000root" | base64
This give me not the encoding I want ? How can I echo a string that
has the same effect as passing a string as a argument for example
base64 "\000root\ [at] test.com\000root"
Re: echo "\000root\@test.com\000root" | base64
On 2008-03-31, gert <gert.cuykens [at] gmail.com> wrote:
>
>
> echo "\000root\ [at] test.com\000root" | base64
>
> This give me not the encoding I want ? How can I echo a string that
> has the same effect as passing a string as a argument for example
> base64 "\000root\ [at] test.com\000root"
Check the man page for your base64 command to see if it takes '-' as an
argument to represent standard input.
Re: echo "\000root\@test.com\000root" | base64
On Mar 31, 4:34 am, Bill Marcum <marcumb... [at] bellsouth.net> wrote:
> On 2008-03-31, gert <gert.cuyk... [at] gmail.com> wrote:
>
>
>
> > echo "\000root\ [at] test.com\000root" | base64
>
> > This give me not the encoding I want ? How can I echo a string that
> > has the same effect as passing a string as a argument for example
> > base64 "\000root\ [at] test.com\000root"
>
> Check the man page for your base64 command to see if it takes '-' as an
> argument to represent standard input.
ok thanks you are right i tested it with a other base64 and it has
nothing to do with echo