Received: (at submit) by bugs.debian.org; 26 Aug 1996 15:14:12 +0000 Received: (qmail-queue invoked from smtpd); 26 Aug 1996 15:09:01 -0000 Received: from spock.lpr.e-technik.tu-muenchen.de (root@129.187.151.1) by master.debian.org with SMTP; 26 Aug 1996 15:08:57 -0000 Received: from ion.lpr.e-technik.tu-muenchen.de (ion.lpr.e-technik.tu-muenchen.de [129.187.151.28]) by spock.lpr.e-technik.tu-muenchen.de (8.6.12/8.6.6) with ESMTP id RAA17379; Mon, 26 Aug 1996 17:03:35 +0200 Received: (from thielen@localhost) by ion.lpr.e-technik.tu-muenchen.de (8.7.5/8.7.3) id OAA02314; Mon, 26 Aug 1996 14:43:48 +0200 From: Herbert Thielen Message-Id: <199608261243.OAA02314@ion.lpr.e-technik.tu-muenchen.de> Subject: mawk doesn't report an error on full filesystems To: submit@bugs.debian.org Date: Mon, 26 Aug 1996 14:43:47 +0200 (MET DST) Cc: herbert.thielen@lpr.e-technik.tu-muenchen.de X-Mailer: ELM [version 2.4 PL24 ME7a] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Package: mawk Version: 1.2.2-1 Mawk doesn't report an error when writing to a full filesystem: $ mawk '{print}' < /etc/motd > /dev/full $ echo $? 0 Probably no write error is catched. Gawk does it's job correct: $ gawk '{print}' < /etc/motd > /dev/full gawk: cmd. line:1: (FILENAME=- FNR=9) warning: error writing standard output (No space left on device) Regards Herbert.