If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > Unix Shell Scripts > nawk - Print Single Quote

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 01-28-04, 12:30
sathyaram_s sathyaram_s is offline
Super Moderator
 
Join Date: Aug 2001
Location: UK
Posts: 4,543
nawk - Print Single Quote

I would like to know how to print a single quote in nawk ...

Eg:

echo myname | nawk '{print $1}'

The output should be
'myname'
(the word myname within single quotes)

I have tried a couple of alternatives, but have not been successful ...

Thanks in advance ...

Cheers
Sathyaram
__________________
Visit the new-look IDUG Website , register to gain access to the excellent content.
Reply With Quote
  #2 (permalink)  
Old 01-28-04, 12:55
Damian Ibbotson Damian Ibbotson is offline
Padawan
 
Join Date: Jun 2002
Location: UK
Posts: 525
I cheat...

echo hello | awk -v quote=\' '{print quote $1 quote}'

I should imagine that would work for nawk also.

Damian
Reply With Quote
  #3 (permalink)  
Old 01-28-04, 18:16
sathyaram_s sathyaram_s is offline
Super Moderator
 
Join Date: Aug 2001
Location: UK
Posts: 4,543
Thanks ... It works

Sathyaram

Quote:
Originally posted by Damian Ibbotson
I cheat...

echo hello | awk -v quote=\' '{print quote $1 quote}'

I should imagine that would work for nawk also.

Damian
__________________
Visit the new-look IDUG Website , register to gain access to the excellent content.
Reply With Quote
  #4 (permalink)  
Old 01-29-04, 08:01
Damian Ibbotson Damian Ibbotson is offline
Padawan
 
Join Date: Jun 2002
Location: UK
Posts: 525
If you can modify your input to awk, you could of course also do...

echo \'hello\' | awk '{print $1}'

Damian
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On