![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Remove blank line - SED | pcwiz | Shell Programming and Scripting | 10 | 11-11-2008 11:19 PM |
| sed: delete regex line and next line if blank | one71 | Shell Programming and Scripting | 2 | 09-18-2008 06:53 AM |
| del blank line after each line | tjmannonline | UNIX for Dummies Questions & Answers | 1 | 04-12-2008 05:56 PM |
| How to get last non-blank line? | tqlam | Shell Programming and Scripting | 6 | 01-17-2008 07:13 PM |
| Blank line ? | varungupta | UNIX for Advanced & Expert Users | 2 | 09-10-2007 01:52 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Newbie help with New Line & Blank Line
I have this in my script:
usercount=`ldapsearch -L -b"ou=people,ou=$ou,dc=paisleyhosting,dc=com" -h"$server" -p"1391" cn=* nothing | grep -c dn` admincount=`ldapsearch -b"ou=groups,ou=$ou,dc=paisleyhosting,dc=com" -h"$server" -p"1391" cn=USERADMIN* uniquemember | grep uniquemember | sort -u | grep -c unique` adminusers=`ldapsearch -b"ou=groups,ou=$ou,dc=paisleyhosting,dc=com" -h"$server" -p"1391" "(&(objectclass=groupofuniquenames)(cn=useradministrator))" uniquemember | grep uniquemember | cut -d "," -f 1 | cut -d "=" -f 3` I want to insert a New Line after "admincount" and a Blank Line after "adminsuers" ... Can you help? |
|
||||
|
My output is like this:
301,1,1,301jjones 302,1,1,302jjones 303,200,4,303jdeer 303mjohnson 303jjones 303kwoods 304,30,1,304jjones 305,1,1,305jjones 306,37,3,306jjones 306swalker 306bblanks ........ etc ...... I want output to be: 301,1,1, 301jjones 302,1,1, 302jjones 303,200,4, 303jdeer 303mjohnson 303jjones 303kwoods 304,30,1, 304jjones 305,1,1, 305jjones 306,37,3, 306jjones 306swalker 306bblanks ........ etc ...... |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|