getfacl returns 0 if no file found

View: New views
3 Messages — Rating Filter:   Alert me  

getfacl returns 0 if no file found

by aputerguy :: Rate this Message:

| View Threaded | Show Only this Message

This is inconsistent with Linux treatment  - is that what we want?
Because it would be good to be able to trap this as an error.

$ getfacl sfdsfdsfdsf
getfacl: sfdsfdsfdsf: No such file or directory
$ echo $?
0 (cygwin)
1 (linux)

Re: getfacl returns 0 if no file found

by Corinna Vinschen-2 :: Rate this Message:

| View Threaded | Show Only this Message

On Nov 10 10:07, aputerguy wrote:
>
> This is inconsistent with Linux treatment  - is that what we want?
> Because it would be good to be able to trap this as an error.
>
> $ getfacl sfdsfdsfdsf
> getfacl: sfdsfdsfdsf: No such file or directory
> $ echo $?
> 0 (cygwin)
> 1 (linux)

2 (solaris).  Since getfacl is based on the Solaris tool, I'll implement
that return code.  1 is returned for usage errors.


Corinna

--
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Project Co-Leader          cygwin AT cygwin DOT com
Red Hat

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


Re: getfacl returns 0 if no file found

by aputerguy :: Rate this Message:

| View Threaded | Show Only this Message

Corinnna writes:
> 2 (solaris).  Since getfacl is based on the Solaris tool, I'll implement
> that return code.  1 is returned for usage errors.

Works for me - as long as I can trap it