Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting


Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

Reply    
 
Thread Tools Search this Thread Display Modes
    #1  
Old 01-30-2013
Registered User
 
Join Date: Jan 2013
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
How to print backslash in shell script using awk?

I found that

Code:
echo "aaa" | awk '{print ",\\";}'

works, and it will give "\".

but

Code:
ddd=`echo "aaa" | awk '{print ",\\";}'`; echo $ddd

will not work.
Could anyone tell me why? thank you.

Last edited by Scrutinizer; 01-30-2013 at 03:15 PM.. Reason: code tags
Sponsored Links
    #2  
Old 01-30-2013
Yoda's Avatar
Jedi Master
 
Join Date: Jan 2012
Location: Galactic Empire
Posts: 2,309
Thanks: 154
Thanked 738 Times in 710 Posts

Code:
ddd=$( echo "aaa" | awk '{print ",\\";}' )
echo $ddd

Sponsored Links
    #3  
Old 01-30-2013
Registered User
 
Join Date: Jan 2013
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
it works, Thank you.
    #4  
Old 01-30-2013
Jotne's Avatar
Registered User
 
Join Date: Dec 2010
Posts: 531
Thanks: 46
Thanked 98 Times in 91 Posts
You can use BEGIN to make awk work without no input

Code:
ddd=$(awk 'BEGIN {print ",\\";}' )

Sponsored Links
    #5  
Old 01-30-2013
RudiC RudiC is offline Forum Advisor  
Registered User
 
Join Date: Jul 2012
Location: Aachen, Germany
Posts: 1,908
Thanks: 25
Thanked 439 Times in 424 Posts

Code:
$ ddd=",\\"; echo $ddd
,\

UUOA?
Sponsored Links
    #6  
Old 01-30-2013
Scrutinizer's Avatar
Moderator
 
Join Date: Nov 2008
Location: Amsterdam
Posts: 7,350
Thanks: 144
Thanked 1,756 Times in 1,593 Posts

Code:
ddd=,\\

UUOQ&A
Sponsored Links
    #7  
Old 01-30-2013
Yoda's Avatar
Jedi Master
 
Join Date: Jan 2012
Location: Galactic Empire
Posts: 2,309
Thanks: 154
Thanked 738 Times in 710 Posts
OP never gave a complete picture of what he was trying to achieve. Thread title is just: "How to print backslash in shell script using awk?"

So I'm not sure if it was UUOQ & UUOA
Sponsored Links
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Passing backslash character to awk variable Mudshark Shell Programming and Scripting 5 11-18-2012 11:38 AM
awk/shell script to print each line to a file saint2006 Shell Programming and Scripting 3 01-06-2010 10:26 AM
shell script(Preferably awk or sed) to print selected number of columns from each row ks_reddy Shell Programming and Scripting 3 08-25-2009 07:39 AM
Sed and awk backslash characters potro Shell Programming and Scripting 7 05-19-2008 08:34 AM
Shell Script -- problem reading backslash(\)!! rossi143 Shell Programming and Scripting 2 04-04-2007 02:52 AM



All times are GMT -4. The time now is 12:11 AM.