I have a file with contents:
Version:2.0
I need an output in the following format:
"Version":"2.0"
How should I insert double quotes in these columns ?
|
|
|
Simple one-liner:
Take anything that is not a colon and put quotes around it. Because of the |
|||||||||||||
|
|
|||
|
|
tested:
or
|
|||
|
|
|
|||
|
Here's another
Output:
|
|||
|
|
|
I think this
It does extra job and doubles existsing quotes. And to create test file I've used the following code:
|
|||
|
|
|
In perl, you can do it like this:
Edit 1: In Linux, using
Edit 2: As @TLP suggested, using single quotes is the way to go for *nix, as it avoids shell interpolation and also allows to drop all of the escapes.
|
|||||||||
|