![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| 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 |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
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 |
| Forum Sponsor | ||
|
|
|
#2
|
||||
|
||||
|
Code:
$ echo "I love shell scripting" | awk '{for (j=NF;j>0;j--) {printf "%s ", $j}}'
scripting shell love I
|
|
#3
|
|||
|
|||
|
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(' ')"
-- Qman |
|||
| Google The UNIX and Linux Forums |