The UNIX and Linux Forums  

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


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

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Regarding Shell Scripting anilkarikkandar UNIX for Dummies Questions & Answers 3 11-19-2006 09:26 PM
HELP PLS!! Shell Scripting!! Mary_xxx Shell Programming and Scripting 9 09-16-2006 03:52 AM
difference between AIX shell scripting and Unix shell scripting. haroonec Shell Programming and Scripting 2 04-12-2006 05:12 AM
something else on shell scripting master_6ez Shell Programming and Scripting 1 11-21-2004 08:42 PM

Reply
 
Submit Tools LinkBack Thread Tools Search this Thread Display Modes
  #1  
Old 01-23-2008
Registered User
 

Join Date: Jan 2008
Posts: 10
shell scripting

Hi

Can anyone does the scripting by using AWK? or other ways in shell scripting?

if I have input as "I love shell scripting ", I want to get output as "scripting shell love I "

Thanks

james
Reply With Quote
Forum Sponsor
  #2  
Old 01-23-2008
jaduks's Avatar
Registered User
 

Join Date: Aug 2007
Location: Assam,India
Posts: 146
Code:
$ echo "I love shell scripting" | awk '{for (j=NF;j>0;j--) {printf "%s ", $j}}'
scripting shell love I
//Jadu
Reply With Quote
  #3  
Old 01-23-2008
Registered User
 

Join Date: Jan 2008
Posts: 7
As long as we're calling external programs:
Code:
echo I love scripting | python -c "import sys; a = sys.stdin.readline().split(); a.reverse(); print ' '.join(a)"
Code:
echo I love scripting | ruby -e "puts STDIN.read.split.reverse.join(' ')"
I'm sure there's a one-liner in bash, but I got tired of salting/peppering and gave up :<
--
Qman
Reply With Quote
Google The UNIX and Linux Forums
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes




All times are GMT -7. The time now is 06:58 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008. All Rights Reserved.Ad Management by RedTyger Visit The Complex Event Processing Blog

Content Relevant URLs by vBSEO 3.2.0