File: README

package info (click to toggle)
libfilesys-diskspace-perl 0.05-17
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 180 kB
  • sloc: perl: 157; makefile: 2
file content (35 lines) | stat: -rw-r--r-- 1,012 bytes parent folder | download | duplicates (11)
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
  NAME

    Filesys::DiskSpace - Perl df

  DESCRIPTION

    This routine displays information on a file system such as its type,
    the amount of disk space occupied, the total disk space and the number
    of inodes.
    It tries C<syscall(SYS_statfs)> and C<syscall(SYS_statvfs)> in several
    ways. If all fails, it C<croak>s.

    More information about this module is included in this package.

  INSTALLATION

    To install, cd to the directory containing the unpacked
    distribution and do one of the following:

    a.  Create a makefile by running Makefile.PL using the perl
        program into whose library you want to install and then run
        make three times:

            perl Makefile.PL
            make
            make test
            make install

    b.  To install into a private library, for example your home
        directory:

            perl Makefile.PL INSTALLSITELIB=$HOME/lib INSTALLMAN3DIR=$HOME/man
            make
            make test
            make pure_install