summaryrefslogtreecommitdiffstats
path: root/funtools/txt/nlcr
diff options
context:
space:
mode:
Diffstat (limited to 'funtools/txt/nlcr')
-rwxr-xr-xfuntools/txt/nlcr20
1 files changed, 0 insertions, 20 deletions
diff --git a/funtools/txt/nlcr b/funtools/txt/nlcr
deleted file mode 100755
index a623bbd..0000000
--- a/funtools/txt/nlcr
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-case $# in
- 0)
- tr '\012' '\015'
- break;;
-
- 1)
- tr '\012' '\015' < $1
- break;;
-
- 2)
- tr '\012' '\015' < $1 > $2
- break;;
-
- *)
- echo "args: 0 (stdin/stdout), 1 (ifile/stdout), or 2 (ifile/ofile)"
- exit 1;;
-esac
-