003 File Manager
Current Path:
/usr/src/contrib/ntp/scripts/ntp-wait
usr
/
src
/
contrib
/
ntp
/
scripts
/
ntp-wait
/
📁
..
📄
Makefile.am
(3.06 KB)
📄
Makefile.in
(30.92 KB)
📄
invoke-ntp-wait.menu
(53 B)
📄
invoke-ntp-wait.texi
(3.7 KB)
📄
ntp-wait-opts
(1.61 KB)
📄
ntp-wait-opts.def
(2.23 KB)
📄
ntp-wait.1ntp-waitman
(3.36 KB)
📄
ntp-wait.1ntp-waitmdoc
(2.7 KB)
📄
ntp-wait.html
(10.7 KB)
📄
ntp-wait.in
(1.52 KB)
📄
ntp-wait.man.in
(3.36 KB)
📄
ntp-wait.mdoc.in
(2.7 KB)
📄
ntp-wait.texi
(1.4 KB)
Editing: ntp-wait-opts
# EDIT THIS FILE WITH CAUTION (ntp-wait-opts) # # It has been AutoGen-ed June 23, 2020 at 02:21:30 AM by AutoGen 5.18.5 # From the definitions ntp-wait-opts.def # and the template file perlopt use Getopt::Long qw(GetOptionsFromArray); Getopt::Long::Configure(qw(no_auto_abbrev no_ignore_case_always)); my $usage; sub usage { my ($ret) = @_; print STDERR $usage; exit $ret; } sub paged_usage { my ($ret) = @_; my $pager = $ENV{PAGER} || '(less || more)'; open STDOUT, "| $pager" or die "Can't fork a pager: $!"; print $usage; exit $ret; } sub processOptions { my $args = shift; my $opts = { 'tries' => '100', 'sleep' => '6', 'verbose' => '', 'help' => '', 'more-help' => '' }; my $argument = ''; my $ret = GetOptionsFromArray($args, $opts, ( 'tries|n=i', 'sleep|s=i', 'verbose|v', 'help|?', 'more-help')); $usage = <<'USAGE'; ntp-wait - Wait for ntpd to stabilize the system clock - Ver. 4.2.8p15 USAGE: ntp-wait [ -<flag> [<val>] | --<name>[{=| }<val>] ]... -n, --tries=num Number of times to check ntpd -s, --sleep=num How long to sleep between tries -v, --verbose Be verbose -?, --help Display usage information and exit --more-help Pass the extended usage text through a pager Options are specified by doubled hyphens and their name or by a single hyphen and the flag character. USAGE usage(0) if $opts->{'help'}; paged_usage(0) if $opts->{'more-help'}; $_[0] = $opts; return $ret; } END { close STDOUT };
Upload File
Create Folder