This is the mail archive of the cygwin@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: awk strangely outputs to file


On Feb 3, Harald Kierer wrote....

>How can awk write Windows-like text files from within the script?
>The only way right now is to redirect the whole output like above.
>

perhaps you would like to keep awk working the way it is currently and
call use the program unix2dos to convert the output file to DOS format.

You can write it in a single shell script somewhat like this...

#!/bin/bash

awk -v v_OutFile="c:/x" -f example.awk /etc/passwd

dos2unix "c:/x"

IMO it would be a pain if awk were to output data with Windows style
line terminators.  It would affect other programs to which data is piped
from awk.

-- 
Chiranth M.C.
Netkraft Pvt Ltd
http://symonds.net/~chiranth




--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]