NAME openCreatExcl -- create a new file SYNOPSIS openCreatExcl filename [ mode ] DESCRIPTION openCreatExcl calls open(2) with oflag = O_WRONLY | O_CREAT | O_CREAT. If mode is given on the command line, it will be passed to open; if mode is not given, 0666 will be used (but the actual mode of the file may be different, depending on the user's umask). If given, mode is assumed to be an octal number, even if no leading zero is present. EXIT STATUS openCreatExcl will exit with one of the following values: 0 success 1 error SEE ALSO open(2) AUTHOR Adam Moskowitz