From: contracer on
Hi ,
I need substitute this character: '
By this: "

How could I make this task using tr or awk ?

thanks
From: Stephane CHAZELAS on
2010-08-9, 11:47(-07), contracer:
> Hi ,
> I need substitute this character: '
> By this: "
>
> How could I make this task using tr or awk ?


tr \' \"

--
Stephane
From: contracer on
On 9 ago, 16:21, Stephane CHAZELAS <stephane_chaze...(a)yahoo.fr> wrote:
> 2010-08-9, 11:47(-07), contracer:
>
> > Hi ,
> > I need substitute this character:  '
> > By this: "
>
> > How could I make this task using tr or awk ?
>
> tr \' \"
>
> --
> Stephane

Thanks a lot !!!