Completely obsolete and no longer used.
authorjkratoch <>
Tue, 11 Aug 2009 20:10:24 +0000 (20:10 +0000)
committerjkratoch <>
Tue, 11 Aug 2009 20:10:24 +0000 (20:10 +0000)
bin/md [deleted file]
bin/mdr_args [deleted file]
bin/mr [deleted file]

diff --git a/bin/md b/bin/md
deleted file mode 100755 (executable)
index e503dfe..0000000
--- a/bin/md
+++ /dev/null
@@ -1,31 +0,0 @@
-#! /bin/sh
-if [ -f .print_userprogs ];then
-       if [ `wc -l <.print_userprogs` = 1 ];then
-               arg="./`sed 's/:.*//' <.print_userprogs`"
-       fi
-fi
-if [ -z "$arg" ];then
-       arg="`basename "$PWD"`"
-fi
-
-run_args="`mdr_args "$arg"`"
-
-if [ -z "$1" ];then
-       cmd="run"
-else
-       cmd="rtl $1";shift
-fi
-
-echo "ARG: $arg  CMD: $cmd"
-t="/tmp/mr.$$";rm -f "$t"
-trap 'rm -f "$t"' EXIT
-cat >"$t" <<EOCMDS
-set args $run_args
-`stty size|awk '{print "set height "$1"\nset width "$2}'`
-echo $cmd\n
-$cmd
-shell rm -vf "$t"
-EOCMDS
-set -xe
-make "$arg"
-gdb --command="$t" ./"$arg"
diff --git a/bin/mdr_args b/bin/mdr_args
deleted file mode 100755 (executable)
index c9e2b8c..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-#! /bin/sh
-if [ $# != 1 ];then
-       echo "Syntax: $0 \"\$arg\""
-       exit 1
-fi
-
-case "`basename "$1"`" in
-
-tac_plus)
-       minus=
-       minus="$minus -8"       # AUTHOR
-       #minus="$minus -128"    # CONFIG
-       minus="$minus -4096"    # CLEAN
-       #minus="$minus -16384"  # CFGEVAL
-       echo "-g -p 4949 -d `echo 2^17-1-2-256-512-1024-2048-65536 $minus |bc`"
-       ;;
-dosfsck)
-       echo "-f -v -V -r /dev/hdc1"
-       ;;
-httpd)
-       echo "-DSSL -X -f $HOME/http/httpd.conf"
-       ;;
-*)
-       ;;
-esac
diff --git a/bin/mr b/bin/mr
deleted file mode 100755 (executable)
index 3a5a49c..0000000
--- a/bin/mr
+++ /dev/null
@@ -1,17 +0,0 @@
-#! /bin/sh
-if [ -f .print_userprogs ];then
-       if [ `wc -l <.print_userprogs` = 1 ];then
-               arg="./`sed 's/:.*//' <.print_userprogs`"
-       fi
-### elif [ -n "$1" ];then arg="$1";shift
-fi
-if [ -z "$arg" ];then
-       arg="`basename "$PWD"`"
-fi
-
-run_args="`mdr_args "$arg"`"
-
-echo "ARG: $arg"
-set -xe
-make "$arg"
-./"$arg" $run_args