summaryrefslogtreecommitdiff
path: root/distrib/arc/floppies/list2sh.awk
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-10-10 10:06:28 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-10-10 10:06:28 +0000
commit8a10db79b32139556fedbe3180e330b429c8133e (patch)
tree2ca645343d88905ab6f5121b66b731e48751055c /distrib/arc/floppies/list2sh.awk
parent6914174873a664fabedafba340ff51163023b4c0 (diff)
copy sparc stuff, to be munged into shape
Diffstat (limited to 'distrib/arc/floppies/list2sh.awk')
-rw-r--r--distrib/arc/floppies/list2sh.awk55
1 files changed, 55 insertions, 0 deletions
diff --git a/distrib/arc/floppies/list2sh.awk b/distrib/arc/floppies/list2sh.awk
new file mode 100644
index 00000000000..3a1f9fdad59
--- /dev/null
+++ b/distrib/arc/floppies/list2sh.awk
@@ -0,0 +1,55 @@
+# $Id: list2sh.awk,v 1.1 1996/10/10 10:05:49 deraadt Exp $
+
+BEGIN {
+ printf("cd ${CURDIR}\n");
+ printf("\n");
+}
+/^$/ || /^#/ {
+ print $0;
+ next;
+}
+$1 == "COPY" {
+ printf("echo '%s'\n", $0);
+ printf("rm -f ${TARGDIR}/%s\n", $3);
+ printf("cp %s ${TARGDIR}/%s\n", $2, $3);
+ next;
+}
+$1 == "LINK" {
+ printf("echo '%s'\n", $0);
+ printf("rm -f ${TARGDIR}/%s\n", $3);
+ printf("(cd ${TARGDIR}; ln %s %s)\n", $2, $3);
+ next;
+}
+$1 == "SYMLINK" {
+ printf("echo '%s'\n", $0);
+ printf("rm -f ${TARGDIR}/%s\n", $3);
+ printf("(cd ${TARGDIR}; ln -s %s %s)\n", $2, $3);
+ next;
+}
+$1 == "COPYDIR" {
+ printf("echo '%s'\n", $0);
+ printf("(cd ${TARGDIR}/%s && find . ! -name . | xargs /bin/rm -rf)\n",
+ $3);
+ printf("(cd %s && find . ! -name . | cpio -pdamu ${TARGDIR}/%s)\n", $2,
+ $3);
+ next;
+}
+$1 == "SPECIAL" {
+ printf("echo '%s'\n", $0);
+ printf("(cd ${TARGDIR};");
+ for (i = 2; i <= NF; i++)
+ printf(" %s", $i);
+ printf(")\n");
+ next;
+}
+{
+ printf("echo '%s'\n", $0);
+ printf("echo 'Unknown keyword \"%s\" at line %d of input.'\n", $1, NR);
+ printf("exit 1\n");
+ exit 1;
+}
+END {
+ printf("\n");
+ printf("exit 0\n");
+ exit 0;
+}