![]() |
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 |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| suppressing an error message using the "ls" command | basher400 | UNIX for Dummies Questions & Answers | 5 | 01-14-2009 11:18 AM |
| Development Releases: Linux Mint 4.0 Beta "Fluxbox", 4.0 Alpha "Debian" | iBot | UNIX and Linux RSS News | 0 | 01-04-2008 03:00 PM |
| Explain the line "mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'`" | Lokesha | UNIX for Dummies Questions & Answers | 4 | 12-20-2007 01:52 AM |
| Unix "at" / "Cron" Command New Problem...Need help | Mohanraj | UNIX for Dummies Questions & Answers | 3 | 01-26-2006 08:08 PM |
| No utpmx entry: you must exec "login" from lowest level "shell" | peterpan | UNIX for Dummies Questions & Answers | 0 | 01-18-2006 04:15 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
problem while suppressing "$"
Hi,
I have the following code in the make file Code:
echo " swremove \`swlist -l product | grep someproduct| awk '{print $1}'\` ">>filename
Code:
swremove
`swlist -l product | grep someproduct|awk '{print $1}'`
|
|
||||
|
Backslash works for me here. Are you using some atrocious c shell?
Code:
vnix$ echo " swremove \`swlist -l product | grep someproduct| awk '{print \$1}'\` "
swremove `swlist -l product | grep someproduct| awk '{print $1}'`
vnix$
Code:
vnix$ cat Makefile
fun:
echo " swremove \`swlist -l product | grep someproduct| awk '{print \$$1}'\` "
vnix$ make
echo " swremove \`swlist -l product | grep someproduct| awk '{print \$1}'\` "
swremove `swlist -l product | grep someproduct| awk '{print $1}'`
Last edited by era; 03-18-2008 at 03:02 AM.. Reason: Add Makefile snippet |
|
||||
|
And of course, *bling*, this:
Code:
grep someproduct| awk '{print \$$1}'
Code:
awk '/someproduct/ { print \$$1}'
|
| Sponsored Links | ||
|
|