• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

t/H24-Apr-2012-10383

At.pmH A D24-Apr-201212.9 KiB512264

ChangesH A D24-Apr-20123.4 KiB8669

MANIFESTH A D24-Apr-2012212 98

META.jsonH A D24-Apr-2012785 4039

META.ymlH A D24-Apr-2012427 2221

Makefile.PLH A D25-Mar-2002313 1310

READMEH A D26-May-20111.5 KiB5241

README

1
2 Schedule::At - OS independent interface to the Unix 'at' command
3 ===========================================================================
4                                                           Jose A. Rodriguez
5                                                        jose AT rodriguez.jp
6
7 Sometimes when you write a perl script you have to call an external command.
8 That's ok if it's a private script or if you know for sure it will run on a
9 single architecture.
10
11 But if want to distribute the script or you work on a multi-architecture
12 environment you can't simply call to the external command and expect it
13 will work just fine. That only happens in the movies.
14
15 This module privides an OS independent interface to the Unix 'at' command
16 and it will map the calls to real (and OS dependent) commands. It has been
17 configured and tested for:
18
19		Solaris 2.9
20		HPUX 11.00
21		Digital Unix 5.1
22		Digital Unix 4.0
23		Linux (RedHat 7.3)
24
25 Not tested but it should work on:
26		HPUX 10.20
27		SunOs 4.1.4
28		AIX
29		Dynix/ptx
30		FreeBSD
31		OpenBSD
32		Solaris 2.10
33		Linux
34		NetBSD
35		DragonFly BSD
36
37 You can configure a new OS very easily (read the end of the At.pm module),
38 and the mechanism used could be used for configuring and adapting other
39 OS dependent commands. Please, feel free to send e-mail to
40 "jose AT rodriguez.jp" to discuss this matter, configure Schedule::At for
41 more Operating Systems or report bugs.
42
43 Installation
44 ---------------------------------------------------------------------------
45 As usual:
46
47 	perl Makefile.PL
48 	make
49 	make test
50 	make install
51
52