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


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

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

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


desc
@Force ugo+w access on all files owned by user in tree
@


1.3
log
@grave elimination
@
text
@#!/bin/sh -e
find . -name RCS -prune -o -type f -user $(whoami) -print0|xargs -0 chmod  ugo+w
@


1.2
log
@Set up user name as a param to avoid multiple invocations; exit on error
@
text
@d2 1
a2 2
i=`whoami`
find . \( -name RCS -prune \) -o -type f -user $i -print -exec chmod  ugo+w {} \;
@


1.1
log
@Initial revision
@
text
@d1 3
a3 2
#!/bin/sh
find . \( -name RCS -prune \) -o -type f -user `whoami` -print -exec chmod  ugo+w {} \;
@
