Sys::Mknod - make special files


Sys-Mknod documentation  | view source Contained in the Sys-Mknod distribution.

Index


NAME

Top

Sys::Mknod - make special files

SYNOPSIS

Top

  use Sys::Mknod;

  mknod ("/dev/filename", type, $major, $minor, $mode);
  mkfifo ("filename", $mode);

DESCRIPTION

Top

mknod - creates special files. Why use system() when you can use syscall()?

$mode is the resultant file mode, and defaults to 0666. It does not override your umask.

SPECIAL FILE TYPES

Top

$type must be one of:

m/^c/i

Creates a "Character Special" device.

m/^b/i

Creates a "Block Special" device"

AUTHOR

Top

Sam Vilain, <sam@vilain.net>

SEE ALSO

Top

perlfunc, mknod(2), mknod(1), mkfifo(1)


Sys-Mknod documentation  | view source Contained in the Sys-Mknod distribution.