summaryrefslogtreecommitdiff
path: root/undos.sh
diff options
context:
space:
mode:
Diffstat (limited to 'undos.sh')
-rwxr-xr-xundos.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/undos.sh b/undos.sh
deleted file mode 100755
index db12064..0000000
--- a/undos.sh
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-#
-# usage: undos <file>
-#
-# strips CRs from a file - useful when moving DOS-created files
-# onto UN*X machines
-
-cat $1 | tr -d "\r" > $1.tmp
-mv $1.tmp $1
-