a7 is updated with Phil's stdin reading patch. I've written a few more

utilities and modified the v1 man pages for them. Fixed a typo (missing
line) in src/cmd/as.s.
This commit is contained in:
Warren Toomey
2016-03-07 16:17:57 +10:00
parent 42636a83e3
commit cfafcad963
10 changed files with 427 additions and 18 deletions
+19
View File
@@ -0,0 +1,19 @@
11/3/70 LN (I)
NAME ln -- link to a file
SYNOPSIS ln name1 name2
DESCRIPTION ln adds another filename to the first filename
FILES
SEE ALSO
DIAGNOSTICS "twofiles" - please provide two filenames
"? file" - unable to make the link
BUGS
OWNER wkt
+19
View File
@@ -0,0 +1,19 @@
11/3/70 MV (I)
NAME mv -- move or rename a file
SYNOPSIS mv name1 name2
DESCRIPTION mv changes the name of name with the rename system call.
FILES
SEE ALSO
DIAGNOSTICS "twofiles" - please provide two filenames
"? file" - either unable to remove or create a file
BUGS The second diagnostic is ambiguous.
OWNER wkt
+50
View File
@@ -0,0 +1,50 @@
11/3/70 STAT (I)
NAME stat - get file status
SYNOPSIS stat name
DESCRIPTION stat gives several kinds of information about one file:
files:
access mode
number of links
owner
size in words
name
All information is self-explanatory except the mode. The
mode is a five-character string whose characters mean the
following:
1 s: file is small (smaller than 4096 words)
l: file is large
d: file is a directory
2 r: owner can read
-: owner cannot read
3 w: owner can write
-: owner cannot write
4 r: non-owner can read
-: non-owner cannot read
5 w: non-owner can write
-: non-owner cannot write
All numeric values are printed in octal
if he cannot be found in "/etc/uids" a number is given.
FILES
SEE ALSO ls with the -l option gives the same information as stat,
except that it also shows the i-node number for each file.
DIAGNOSTICS "name ?" for any error. "nofiles" if no file name is given.
BUGS none
OWNER wkt