Add the 'varsym' utility which may be used to manipulate system-wide and
[dragonfly.git] / bin / varsym / varsym.1
1 .\" Copyright (c) 2003 Matthew Dillon <dillon@backplane.com>
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $DragonFly: src/bin/varsym/varsym.1,v 1.1 2003/11/05 23:29:37 dillon Exp $
26 .\"
27 .Dd Nov 5, 2003
28 .Dt VARSYM 1
29 .Os
30 .Sh NAME
31 .Nm varsym
32 .Nd get and set user and system-wide variables for variant symlinks
33 .Sh SYNOPSIS
34 .Nm
35 .Op Fl qdsup
36 .Ar var[=data]
37 .Sh DESCRIPTION
38 The
39 .Nm
40 program manages user and system-wide variables.  These variables are typically
41 used by the system to resolve variant symlinks but may also be used generally.
42 .Pp
43 For each operand set, modify, retrieve, or delete the specified variable.
44 By default variables specified without data are retrieved and variables
45 specified with data are set.  Variables may be set to empty.
46 .Bl -tag -width Ar
47 .It Fl q
48 Quiet mode.  When retrieving a variable only its data is printed.
49 .It Fl d
50 Delete mode.  The specified variables are deleted.  Any specified data is
51 ignored.
52 .It Fl s
53 This option causes variables to be set system-wide and restricts retrievals
54 to system-specific variables.
55 .It Fl u
56 This option causes variables to be set on a per-user-id basis and restricts
57 retrievals to user-specific variables.  This is the default.
58 .It Fl p
59 This option causes variables to be set on a per-process basis and restricts
60 retrievals to process-specific variables.  It exists for completeness.  Note
61 that since
62 .Nm
63 is run as its own process, using this option will not effect your shell's
64 namespace.
65 .El
66 .Sh RETURN VALUES
67 The
68 .Nm
69 utility exits with one of the following values:
70 .Bl -tag -width Ds
71 .It 0
72 No errors occured.
73 .It 1
74 A requested variable could not be found
75 .It 2
76 A requested variable could not be set
77 .El
78 .Sh SEE ALSO
79 .Xr ln 1 ,