summaryrefslogtreecommitdiffstats
path: root/text-utils/line.sh
diff options
context:
space:
mode:
Diffstat (limited to 'text-utils/line.sh')
-rw-r--r--text-utils/line.sh22
1 files changed, 0 insertions, 22 deletions
diff --git a/text-utils/line.sh b/text-utils/line.sh
deleted file mode 100644
index 0d1c59c7d..000000000
--- a/text-utils/line.sh
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/sh
-#
-# line read one line
-#
-# Version: $Id: line,v 1.1 2001/08/03 14:54:10 hch Exp hch $
-#
-# Author: Christoph Hellwig <hch@caldera.de>
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version
-# 2 of the License, or (at your option) any later version.
-#
-
-read line
-echo ${line}
-
-if [ -z "${line}" ]; then
- exit 1
-else
- exit 0
-fi