Newly discovered earliest draft of a Unix manual (1971)
1–10 of 42 posts
Re: Newly discovered earliest draft of a Unix manual (1971)
#2Re: Newly discovered earliest draft of a Unix manual (1971)
#3Re: Newly discovered earliest draft of a Unix manual (1971)
#4There must be some OCR errors in there -- the system call "create" was spelled with an "e"!
Re: Newly discovered earliest draft of a Unix manual (1971)
#5Why does this supposedly old file contain UTF-8 encoded characters? (The apostrophe in “ search in the user’s current directory ” is U+2019, RIGHT SINGLE QUOTATION MARK.)
[1] http://www.tuhs.org/Archive/PDP-11/Distributions/research/Mc... [2] http://www.tuhs.org/Archive/PDP-11/Distributions/research/Mc...
Re: Newly discovered earliest draft of a Unix manual (1971)
#6There must be some OCR errors in there -- the system call "create" was spelled with an "e"!
CREAT(2) BSD System Calls Manual CREAT(2)
NAME
creat -- create a new file
LIBRARY
Standard C Library (libc, -lc)
SYNOPSIS
#include
int
creat(const char *path, mode_t mode);
DESCRIPTION
This interface is made obsolete by: open(2).
The creat() function is the same as:
open(path, O_CREAT | O_TRUNC | O_WRONLY, mode);
SEE ALSO
open(2)
HISTORY
The creat() function appeared in Version 6 AT&T UNIX.
BSD June 2, 1993 BSDRe: Newly discovered earliest draft of a Unix manual (1971)
#7There must be some OCR errors in there -- the system call "create" was spelled with an "e"!
Sure about that? CREAT(2) BSD System Calls Manual CREAT(2) NAME creat -- create a new file LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include int creat(const char *path, mode_t mode); DESCRIPTION This interface is made obsolete by: open(2). The creat() function is the same as: open(path, O_CREAT | O_TRUNC | O_WRONLY, mode); SEE ALSO open(2) HISTORY The creat() function appeared in Version 6 AT&T UNIX. BSD June…
Re: Newly discovered earliest draft of a Unix manual (1971)
#8There must be some OCR errors in there -- the system call "create" was spelled with an "e"!
Sure about that? CREAT(2) BSD System Calls Manual CREAT(2) NAME creat -- create a new file LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include int creat(const char *path, mode_t mode); DESCRIPTION This interface is made obsolete by: open(2). The creat() function is the same as: open(path, O_CREAT | O_TRUNC | O_WRONLY, mode); SEE ALSO open(2) HISTORY The creat() function appeared in Version 6 AT&T UNIX. BSD June…
3.5.2 Create
To create a new file, the following call is used.
filep = create(name, mode)
But it's listed correctly as a system call. A1.6 creat
To create or recreate a file,
sys creat
name
modeRe: Newly discovered earliest draft of a Unix manual (1971)
#9There must be some OCR errors in there -- the system call "create" was spelled with an "e"!
Sure about that? CREAT(2) BSD System Calls Manual CREAT(2) NAME creat -- create a new file LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include int creat(const char *path, mode_t mode); DESCRIPTION This interface is made obsolete by: open(2). The creat() function is the same as: open(path, O_CREAT | O_TRUNC | O_WRONLY, mode); SEE ALSO open(2) HISTORY The creat() function appeared in Version 6 AT&T UNIX. BSD June…
3.5.2 Create
To create a new file, the following call is used.
filep = create(name, mode)Re: Newly discovered earliest draft of a Unix manual (1971)
#10You could, and people did, write a lot of code with just that doc as documentation.
Maybe it's because I'm a Bell Labs fanboy, I find this doc impressive.