summaryrefslogtreecommitdiff
path: root/testing/man-db/convert-mans
diff options
context:
space:
mode:
Diffstat (limited to 'testing/man-db/convert-mans')
-rw-r--r--testing/man-db/convert-mans11
1 files changed, 0 insertions, 11 deletions
diff --git a/testing/man-db/convert-mans b/testing/man-db/convert-mans
deleted file mode 100644
index 58a0224b0..000000000
--- a/testing/man-db/convert-mans
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh -e
-FROM="$1"
-TO="$2"
-shift ; shift
-while [ $# -gt 0 ]
-do
- FILE="$1"
- shift
- iconv -f "$FROM" -t "$TO" "$FILE" >.tmp.iconv
- mv .tmp.iconv "$FILE"
-done