X-Spam-Check-By: sourceware.org
Date: Wed, 15 Feb 2006 10:20:05 -0500 (EST)
From: Igor Peshansky <pechtcha@cs.nyu.edu>
Reply-To: cygwin@cygwin.com
To: Lennart Borgman <lennart.borgman.073@student.lu.se>
cc: cygwin@cygwin.com
Subject: Re: Perl creates html-file, view from cmd.exe => Access is denied
In-Reply-To: <43F340C9.3010604@student.lu.se>
Message-ID: <Pine.GSO.4.63.0602151009160.21611@access1.cims.nyu.edu>
References: <003301c63230$cf395d60$a501a8c0@CAM.ARTIMI.COM>  <43F32C51.2070503@student.lu.se> <Pine.GSO.4.63.0602150857250.21611@access1.cims.nyu.edu>  <43F340C9.3010604@student.lu.se>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
Precedence: bulk
List-Unsubscribe: <mailto:cygwin-unsubscribe-archive-cygwin=delorie.com@cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com

<http://cygwin.com/acronyms/#PPIOSPE>.  Redirected to the list.

On Wed, 15 Feb 2006, Lennart Borgman wrote:

> Igor Peshansky wrote:
> > > Thanks Dave, but what would "chmod +x" be in perl? Is there an easy
> > > way to do it? (Hope this is not too much OT, it is clearly useful
> > > here.)
> >
> > "perldoc -f chmod".
> > 	Igor
>
> Yes, but it does not know the +x syntax.

Not that particular syntax (hey, you can always 'system("chmod +x $f")'),
but it does allow Fcntl constants (e.g., 'chmod
S_IRWXU|S_IRGRP|S_IXGRP|S_IROTH|S_IXOTH $f' -- still from the above
perldoc page), and it uses the same octal mode values as the command-line
chmod (see "man chmod").  If you want to add the executable bits for
everyone, something like 'chmod 0111|((stat $f)[2]&07777), $f' should
work.

None of this is Cygwin-specific.
	Igor
-- 
				http://cs.nyu.edu/~pechtcha/
      |\      _,,,---,,_	    pechtcha@cs.nyu.edu | igor@watson.ibm.com
ZZZzz /,`.-'`'    -.  ;-;;,_		Igor Peshansky, Ph.D. (name changed!)
     |,4-  ) )-,_. ,\ (  `'-'		old name: Igor Pechtchanski
    '---''(_/--'  `-'\_) fL	a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

"Las! je suis sot... -Mais non, tu ne l'es pas, puisque tu t'en rends compte."
"But no -- you are no fool; you call yourself a fool, there's proof enough in
that!" -- Rostand, "Cyrano de Bergerac"

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

