Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

run awk file on windows

Status
Not open for further replies.

haronis

Programmer
Dec 9, 2004
1
IL
Hi All,

I have "awk" file which I interested run over windows (currently I run it on UNIX).
How can I do it?

Thanks.
 
Download Brian Kernighan's "One True Awk" from


To get a shell under windows, click Start -- All Programs -- Accessories -- Command Prompt.

This gives you the "DOS prompt".

Your programs on the command line must be enclosed in double quotes instead of single:
[tt]
awk95 "BEGIN{print \"hello\"}"
[/tt]
 
Or...download Cygwin.



----------------------------------------------------------------------------
The person who says it can't be done should not interrupt the person doing it. -- Chinese proverb
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top