dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / lib / libast / common / man / strperm.3
blob9b68946f5fdc5a814a9e8dc969e4588df8615ec0
1 .fp 5 CW
2 .de Af
3 .ds ;G \\*(;G\\f\\$1\\$3\\f\\$2
4 .if !\a\\$4\a\a .Af \\$2 \\$1 "\\$4" "\\$5" "\\$6" "\\$7" "\\$8" "\\$9"
5 ..
6 .de aF
7 .ie \a\\$3\a\a .ft \\$1
8 .el \{\
9 .ds ;G \&
10 .nr ;G \\n(.f
11 .Af "\\$1" "\\$2" "\\$3" "\\$4" "\\$5" "\\$6" "\\$7" "\\$8" "\\$9"
12 \\*(;G
13 .ft \\n(;G \}
15 .de L
16 .aF 5 \\n(.f "\\$1" "\\$2" "\\$3" "\\$4" "\\$5" "\\$6" "\\$7"
18 .de LR
19 .aF 5 1 "\\$1" "\\$2" "\\$3" "\\$4" "\\$5" "\\$6" "\\$7"
21 .de RL
22 .aF 1 5 "\\$1" "\\$2" "\\$3" "\\$4" "\\$5" "\\$6" "\\$7"
24 .de EX          \" start example
25 .ta 1i 2i 3i 4i 5i 6i
26 .PP
27 .RS 
28 .PD 0
29 .ft 5
30 .nf
32 .de EE          \" end example
33 .fi
34 .ft
35 .PD
36 .RE
37 .PP
39 .TH STRPERM 3
40 .SH NAME
41 strperm \- evaluate file permission expression
42 .SH SYNOPSIS
43 .L "int strperm(char* s, char** e, int p)"
44 .SH DESCRIPTION
45 .I strperm
46 applies a file permission expression in the nul-terminated string
47 .I s
48 to the initial file permission mask
49 .IR p .
50 The new permission mask is returned.
51 If 
52 .I e
53 not 0 then
54 .I *e
55 is set to point to the first unrecognized character in
56 .IR s .
57 .PP
58 A tape device specification is composed of one or more
59 .I who-op-permission
60 terms separated by
61 .BR , .
62 .I who
63 selects portions of the permission bits and may be any combination of:
64 .TP 3
65 .B u
66 the user permission bits;
67 .TP
68 .B g
69 the group permission bits;
70 .TP
71 .B o
72 the `other' permission bits;
73 .TP
74 .B a
75 all permission bits.
76 .PP
77 If omitted, all permission bits are selected.
78 .I op
79 specifies how the original permission
80 .I p
81 is to be modified:
82 .TP 3
83 .B +
84 .br
85 .ns
86 .B |
87 the new bits are set in
88 .IR p ;
89 .TP 3
90 .B \-
91 the new bits are cleared in
92 .IR p ;
93 .TP
94 .B &
95 the new bits are and'd with
96 .IR p ;
97 .TP
98 .B =
99 the select bits in
100 .I p
101 are set equal to the new bits
103 A permission expression term may also be an octal number.
104 Octal specifications are inherently non-portable.
105 Refer to
106 .IR chmod (1)
107 for an explanation of this form.
108 .SH "SEE ALSO"
109 chmod(1), ls(1), strmode(3)