From c6cbff9421d76720e83b9ee7e2216fd5a3693544 Mon Sep 17 00:00:00 2001
From: Carl Baldwin <cnb@ball.(none)>
Date: Mon, 24 Oct 2005 13:35:49 -0600
Subject: [PATCH] Clean-up the scripts directory a little

---
 scripts/Makefile.am    | 11 ++++++-----
 scripts/create-iso.sh  |  8 --------
 scripts/other-commands | 13 -------------
 3 files changed, 6 insertions(+), 26 deletions(-)
 delete mode 100644 scripts/create-iso.sh
 delete mode 100644 scripts/other-commands

diff --git a/scripts/Makefile.am b/scripts/Makefile.am
index 92bd941..2afda87 100644
--- a/scripts/Makefile.am
+++ b/scripts/Makefile.am
@@ -1,8 +1,9 @@
 bin_SCRIPTS = \
-  files-from-date.sh \
-  find-cmd.sh \
-  list-dates.sh \
-  other-commands \
-  rsync-cmd.sh
+	drive.sh \
+	files-from-date.sh \
+	find-cmd.sh \
+	list-dates.sh \
+	restore-script.sh \
+	rsync-cmd.sh
 
 EXTRA_DIST = $(bin_SCRIPTS)
diff --git a/scripts/create-iso.sh b/scripts/create-iso.sh
deleted file mode 100644
index 793e7c8..0000000
--- a/scripts/create-iso.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/sh
-
-filename=/backup/iso-image.iso
-mountpoint=/backup/iso-mount
-
-dd if=/dev/zero of=$filename bs=2048k count=2220
-mke2fs -b 2048 -F $filename
-mount -t ext2 -o rw,loop $filename $mountpoint
diff --git a/scripts/other-commands b/scripts/other-commands
deleted file mode 100644
index 73f3468..0000000
--- a/scripts/other-commands
+++ /dev/null
@@ -1,13 +0,0 @@
-# Handling null-delimited files with...
-
-# xargs
-xargs -0
-
-# grep
-grep [-z|--null-data]
-
-# sed
-# Can't figure this one out
-
-# awk
-awk 'BEGIN { RS="\0" } {print...}'
-- 
2.34.1