From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-x432.google.com (mail-wr1-x432.google.com [IPv6:2a00:1450:4864:20::432]) by sourceware.org (Postfix) with ESMTPS id EA6593857C70 for ; Mon, 27 Jul 2020 15:47:33 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org EA6593857C70 Received: by mail-wr1-x432.google.com with SMTP id l2so4824200wrc.7 for ; Mon, 27 Jul 2020 08:47:33 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=nbcK3ckH8CXbKlpjIIoI3d7C2tIdZWT1TIsZ+Cd5R+o=; b=fO2sLnnXkfs2Apzbm7zugN6CrtmYYg3/9C/Kh83IyPg/N57GXEI9u4QUOJUmyWJeEm 6m+tcA7TKdBOV/HlWuZjIjuefB3UJ5VlHzjf9Xm8qRm6xyoDbi8Pb6IXfpGwWvqGdiHT 4iplJMV5bl+zYMnsiJGzvm6mnN+BmqzMyh2Ngbadp9m+lyoJu8q/oMpJ4uu/z6Jqy7JF Hcw4cFfirYNW4uHlCteivKIHtEzHKPcGzDTFrYJZLRbrn5pgFO3O7rDEMcoK/Qw1MyDg 5e54ds0E0fHSpRCPNgpsIrx93sQgncWsFUhXqAb0dSgKuxDnPwRbN4KSIKwg2FSVbzY1 bHWQ== X-Gm-Message-State: AOAM531cnQwHVhqX6BXS1ygIpfSuBgseXnu6hpPI/tEM/s4Eu1gYguGh egE0U3psx1EshcUxVKkojoV3XWKv/CmJwafcIdBOweo58FU= X-Google-Smtp-Source: ABdhPJzjQOPsDIvsC4KV3TKJoMSsWuhKTg3BqRNisqBNfcxoIl82zbBcttenRlF/7Dxni698ns7veXiS0WS0oKQIweE= X-Received: by 2002:adf:97dc:: with SMTP id t28mr19469899wrb.291.1595864852590; Mon, 27 Jul 2020 08:47:32 -0700 (PDT) MIME-Version: 1.0 From: Bryan VanSchouwen Date: Mon, 27 Jul 2020 11:47:20 -0400 Message-ID: Subject: Problem with output from gawk software in recent Cygwin installation To: cygwin@cygwin.com X-Spam-Status: No, score=-1.5 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_ENVFROM_END_DIGIT, FREEMAIL_FROM, HTML_MESSAGE, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 X-BeenThere: cygwin@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Cygwin discussions and problem reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Jul 2020 15:47:36 -0000 Hello. I just tried executing an awk script using the most recent version of gawk, but the output did not turn out the way that it was supposed to. This script uses the following command to print the output data to the output file: print(cai[i], rpi[i], i) > "Fit_Height_correln_plot_-_cPuMP_vs_2NH2-cPuMP.dat" and previously, this command always printed the values of the three variables on a single line, separated by spaces; however, now the gawk software is automatically adding hard-returns between the values, resulting in the three values being printed on separate lines within the data file. What is going on here, and how do I permanently make it stop??