![]() |
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 |
| Print to ps2pdf print queue | Sean_69 | SUN Solaris | 2 | 10-22-2007 11:00 AM |
| Print to a ps2pdf print queue. | Sean_69 | UNIX for Dummies Questions & Answers | 1 | 10-22-2007 10:58 AM |
| Print Problem in UNIX. Need to know the option to specify the print paper size | ukarthik | HP-UX | 1 | 06-07-2007 09:35 AM |
| How do I get awk to print a " in it's print part? | LordJezo | Shell Programming and Scripting | 2 | 06-27-2006 09:16 PM |
| cannot print from an application but, i can print from others? | 75ping6 | UNIX for Dummies Questions & Answers | 1 | 08-02-2004 08:35 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
awk - print
Hi all,
I have script below: #!/bin/sh $name=blah awk -F: -v user="$name" '$1 == user{print $1 ":" $2 ":" $3 ":" $4}' /etc/shadow > /tmp/shadow.tmp based on above, it will only print one line which is "blah" username details. What do i need to do to print all contents of shadow file including "modified" blah user? |
|
||||
|
hi jim,
awk -F: '{print $1 ":" $2 ":" $3 ":" $4}' /etc/shadow > /tmp/shadow.tmp ---> will show all lines within shadow file but not including the one i has edited. e.g: name=blah awk -F: -v user="$name" '$1 == user{print $1 ":" $2 ":" DUMMY ":" $4}' /etc/shadow > /tmp/shadow.tmp From the script above, it will only print blah: UMMY: at shadow.tmpwhat i need is to print the rest of the users from shadow file including the modified. e.g: man:*:13994:::::: nagios:!:13994:0:99999:7::: named:!:13994:0:99999:7::: news:*:13994:::::: nobody:*:13994:::::: ntp:!:13994:0:99999:7::: blah: UMMY:instead of only blah: UMMY: |