head	1.3;
access;
symbols;
locks;
comment	@# @;


1.3
date	2004.09.13.13.29.39;	author dunc;	state Exp;
branches;
next	1.2;

1.2
date	2004.07.31.01.00.18;	author dunc;	state Exp;
branches;
next	1.1;

1.1
date	2003.12.22.07.02.18;	author dunc;	state Exp;
branches;
next	;


desc
@@


1.3
log
@operate on all args
@
text
@#!/bin/sh
while [ -n "$1" ];do
#set -x
  ln -sv $1 amd64-pc-linux-gnu-$1
  shift
done
@


1.2
log
@cvs update a file, keeping .orig
@
text
@d2 1
d4 3
a6 4
[ -n "$1" ] || { echo -e "Missing arg \\nUsage:- odot <file>";exit 1; }
k "$1"
orig "$1"
cvs update "$1"
@


1.1
log
@Initial revision
@
text
@d3 4
a6 5
[ -n "$1" ] || { echo -e "Missing arg \\nUsage:- odot <base>";exit 1; }
for i in *;do
  [ $i = $1 ] && continue
  todo $1 $i
done
@
