Clean-up the scripts directory a little
authorCarl Baldwin <cnb@ball.(none)>
Mon, 24 Oct 2005 19:35:49 +0000 (13:35 -0600)
committerCarl Baldwin <cnb@ball.(none)>
Mon, 24 Oct 2005 19:35:49 +0000 (13:35 -0600)
scripts/Makefile.am
scripts/create-iso.sh [deleted file]
scripts/other-commands [deleted file]

index 92bd941a0c3c92923eddb39f997017a714a67001..2afda8723b96e31e92fd516013f87dae88a278f1 100644 (file)
@@ -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 (file)
index 793e7c8..0000000
+++ /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 (file)
index 73f3468..0000000
+++ /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...}'