X-Spam-Check-By: sourceware.org To: cygwin AT cygwin DOT com From: Kevin Markle Subject: Re: Newlines in cygwin help please... Date: Thu, 12 Apr 2007 14:40:29 -0400 Lines: 57 Message-ID: References: <01a001c77d30$83f19ba0$2e08a8c0 AT CAM DOT ARTIMI DOT COM> Reply-To: kmarkle AT pbs DOT org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15"; format=flowed Content-Transfer-Encoding: 8bit X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Dave Korn brought next idea : > On 12 April 2007 19:19, Kevin Markle wrote: > >> Hello, >> I'm sending text to a files via echo on 5 different lines in a shell >> script | using u2d command to convert it to a dos format and then >> sending it to my email. The text comes out as on big stream instead of >> each echo "Text us here" going on its own line? Is there a way to get >> each line to start from the far left as a newline? >> >> Any ideas would be great! > > Yes, the bug is on line 17 of your script. > > Alternatively, if psychic debugging doesn't fix it, perhaps you'd care to > give us just the /slightest/ clue about what you're /actually/ doing, such as > a testcase or example script that shows the problem? What you're trying > ought to work, give-or-take, so you've probably misimplemented it in some > way. > > cheers, > DaveK echo "Number of Clients in $GROUP:"$NUMCLIENTS >> $DIR/"$GROUP"_header.rpt echo "Number of Clients in $GROUP:"$NUMCLIENTS echo "Number of ASR Atempts for $GROUP:"$ASRATTEMPTED >> $DIR/"$GROUP"_header.rpt echo "Number of ASR Atempts for $GROUP:"$ASRATTEMPTED echo "Number of Successfull ASR Backups for $GROUP:"$ASRSUCCESS >> $DIR/"$GROUP"_header.rpt echo "Number of Successfull ASR Backups for $GROUP:"$ASRSUCCESS echo "Number of Clients successfully reporting to the WSUS server for $GROUP:"$CLIENTSREPORTING >> $DIR/"$GROUP"_header.rpt echo "Number of Clients successfully reporting to the WSUS server for $GROUP:"$CLIENTSREPORTING echo "Number of Clients Scheduled for Updates for $GROUP:"$CLIENTSSCHED >> $DIR/"$GROUP"_header.rpt echo "Number of Clients Scheduled for Updates for $GROUP:"$CLIENTSSCHED u2d $DIR/"$GROUP".rpt u2d $DIR/"$GROUP"_header.rpt #REPORT=`cat $DIR/"$GROUP".rpt` cat $DIR/"$GROUP"_header.rpt $DIR/"$GROUP".rpt > "$GROUP"_summary.rpt #REPORT=`cat $DIR/"$GROUP".rpt | cat $DIR/"$GROUP"_header.rpt` u2d $DIR/"$GROUP"_summary.rpt REPORT=`cat $DIR/"$GROUP"_summary.rpt` Get me this: Number of Clients in group1a_dev:20 Number of ASR Attempts for group1a_dev:30 Number of Successfull ASR Backups for group1a_dev:0 Number of Clients successfully reporting to the WSUS server for group1a_dev:20 Number of Clients Scheduled for Updates for group1a_dev:0 -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/