summaryrefslogtreecommitdiff
path: root/run-parts.8
blob: 3b5d4a894d529d9482d5db3d41bcc3518e4e70c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
.\" Hey, Emacs!  This is an -*- nroff -*- source file.
.\" Build-from-directory and this manpage are Copyright 1994 by Ian Jackson.
.\" Changes to this manpage are Copyright 1996 by Jeff Noxon.
.\" More
.\"
.\" This is free software; see the GNU General Public Licence version 2
.\" or later for copying conditions.  There is NO warranty.
.TH RUN\-PARTS 8 "27 Jun 2012" "Debian"
.SH NAME
run\-parts \- run scripts or programs in a directory
.SH SYNOPSIS
.PP
.B run\-parts
[\-\-test] [\-\-verbose] [\-\-report] [\-\-lsbsysinit] [\-\-regex=RE]
[\-\-umask=umask] [\-\-arg=argument] [\-\-exit\-on\-error] [\-\-help]
[\-\-version] [\-\-list] [\-\-reverse] [\-\-] DIRECTORY
.PP
.B run\-parts
\-V
.SH DESCRIPTION
.PP
.B run\-parts
runs all the executable files named within constraints described below, found
in directory
.IR directory .
Other files and directories are silently ignored.

If neither the \-\-lsbsysinit option nor the \-\-regex option is given
then the names must consist entirely of ASCII upper- and lower-case
letters, ASCII digits, ASCII underscores, and ASCII minus-hyphens.

If the \-\-lsbsysinit option is given, then the names must not end
in .dpkg\-old  or .dpkg\-dist or .dpkg\-new or .dpkg\-tmp, and must
belong to one or more of the following namespaces: the
LANANA-assigned namespace (^[a\-z0\-9]+$); the LSB hierarchical and
reserved namespaces (^_?([a\-z0\-9_.]+\-)+[a\-z0\-9]+$);
and the Debian cron script namespace (^[a\-zA-Z0\-9_\-]+$).

If the \-\-regex option is given, the names must match the custom
extended regular expression specified as that option's argument.

Files are run in the lexical sort order (according to the C/POSIX
locale character collation rules) of their names unless the
\-\-reverse option is given, in which case they are run in the
opposite order.

.SH OPTIONS
.TP
.B \-\-test
print the names of the scripts which would be run, but don't actually run
them.
.TP
.B \-\-list
print the names of the all matching files (not limited to executables),
but don't actually run them. This option cannot be used with --test.
.TP
.B \-v, \-\-verbose
print the name of each script to stderr before running.
.TP
.B \-\-report
similar to
.BR \-\-verbose ,
but only prints the name of scripts which produce output.  The script's name is printed to whichever of stdout or stderr the script first produces output on.
.TP
.B \-\-reverse
reverse the scripts' execution order.
.TP
.B \-\-exit\-on\-error
exit as soon as a script returns with a non-zero exit code.
.TP
.B \-\-lsbsysinit
use LSB namespaces instead of classical behavior.
.TP
.B \-\-new\-session
run each script in a separate process session.  If you use this option,
killing run-parts will not kill the currently running script, it will
run until completion.
.TP
.BI \-\-regex= RE
validate filenames against custom extended regular expression
.IR RE .
See the EXAMPLES section for an example.
.TP
.BI "\-u, \-\-umask=" umask
sets the umask to
.I umask
before running the scripts.
.I umask
should be specified in octal.  By default the umask is set to 022.
.TP
.BI "\-a, \-\-arg=" argument
pass
.I argument
to the scripts.  Use
.B --arg
once for each argument you want passed.
.TP
.B "\-\-"
specifies that this is the end of the options.  Any filename after
.B "\-\-"
will be not be interpreted as an option even if it starts with a
hyphen.
.TP
.B \-h, \-\-help
display usage information and exit.
.TP
.B \-V, \-\-version
display version and copyright and exit.

.SH EXAMPLES
.P
Print the names of all files in /etc that start with `p' and end with `d':
.P
run-parts \-\-list \-\-regex \[aq]^p.*d$\[aq] /etc

.SH COPYRIGHT
.P
Copyright (C) 1994 Ian Jackson.
.P
Copyright (C) 1996 Jeff Noxon.
.P
Copyright (C) 1996, 1997, 1998 Guy Maor
.P
Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Clint Adams

.B run\-parts
is free software; see the GNU General Public License version 2 or
later for copying conditions.  There is
.I no
warranty.