From: Carl Baldwin Date: Mon, 24 Oct 2005 19:35:49 +0000 (-0600) Subject: Clean-up the scripts directory a little X-Git-Tag: release-0.4~72 X-Git-Url: http://git.pippins.net/embedvideo/.git/?a=commitdiff_plain;h=c6cbff9421d76720e83b9ee7e2216fd5a3693544;p=backups%2F.git Clean-up the scripts directory a little --- 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...}'