Search Results

Search: Posts Made By: srimadhuri
25,650
Posted By Scrutinizer
Try: printf "%s\n" "$str" | tr -d =\" ...
Try:
printf "%s\n" "$str" | tr -d =\"

bash/ksh93:
printf "%s\n" "${str//[=\"]}"
25,650
Posted By guruprasadpr
Something like this: $ echo $x ="Lookup...
Something like this:

$ echo $x
="Lookup Procedure"

To remove = and " :
$ echo $x | sed 's/[="]//g'
Lookup Procedure

Guru.
Showing results 1 to 2 of 2

 
All times are GMT -4. The time now is 10:41 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy