Index: [thread] [date] [subject] [author]
  From: WHS <wouters@cistron.nl>
  To  : ggi-develop@eskimo.com
  Date: Thu, 06 Aug 1998 00:40:17 +0200

Re: Snapshots - permissions

Tristan Wibberley wrote:

> > It seems there is a problem with the snapshots. The shell scripts like
> > "configure" don't have any execution permissions. THERE ARE NO execution
> > permissions in the whole archive but the directorys.
> >
> > Achim
> 
> try doing this in the directory from where you extracted your source.
> 
> user@host > echo "chmod +x `find ./degas/ -type f -exec grep -l '#!/'
> \{} \;" > ggix
> user@host > chmod +x ggix

This is easier:
        chmod +x $(find . |grep configure)
Wouter

Index: [thread] [date] [subject] [author]