![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| escaping single quote | javeed7 | Shell Programming and Scripting | 3 | 04-02-2008 05:36 AM |
| single quote | dreams5617 | Shell Programming and Scripting | 2 | 12-01-2007 03:37 AM |
| single or double quote in SED | asami | Shell Programming and Scripting | 2 | 07-17-2006 03:03 AM |
| AWK handling of single quote | braindrain | Shell Programming and Scripting | 3 | 04-27-2006 04:57 PM |
| Replacing a single quote | rjsha1 | Shell Programming and Scripting | 3 | 12-23-2005 10:55 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
how to print single quote in awk
Hi all,
It is a very stupid problem but I am not able to find a solution to it. I am using awk to get a column from a file and I want to get the output field in between single quotes. For example, Input.txt 123 abc 321 ddff 433 dfg ........ I want output file to be as output.txt value is 'abc' value is 'ddff' value is 'dfg' ............... the problem is how to get these single quotes in output, at this moment I am first taking *abc* and then replacing * with ' (single quote). How can we do this with awk thanks Gaurav |
|
||||
|
Hi All,
vgersh and ygor thanks a lot for the help, both the above things are working perfectly fine. Hugow thanks a lot for your time, the awk syntax which I will be using now is Quote:
Quote:
Gaurav |
|
||||
|
easier way
awk '{ print "value is","'\''" $2 "'\''" }' input.txt
does the same thing but may be easier to understand |
| Sponsored Links | ||
|