logo

utils-std

Collection of commonly available Unix tools git clone https://anongit.hacktivis.me/git/utils-std.git

mkfifo.1 (744B)


  1. .\" utils-std: Collection of commonly available Unix tools
  2. .\" Copyright 2017 Haelwenn (lanodan) Monnier <contact+utils@hacktivis.me>
  3. .\" SPDX-License-Identifier: MPL-2.0
  4. .Dd 2024-04-23
  5. .Dt MKFIFO 1
  6. .Os
  7. .Sh NAME
  8. .Nm mkfifo
  9. .Nd Create FIFO special files
  10. .Sh SYNOPSIS
  11. .Nm
  12. .Op Fl m Ar mode
  13. .Ar file...
  14. .Sh DESCRIPTION
  15. .Nm
  16. creates a FIFO special file at
  17. .Ar file .
  18. .Sh OPTIONS
  19. .Bl -tag -width _m_mode
  20. .It Fl m Ar mode
  21. Set permission of new special file,
  22. relative to 0666/rw-rw-rw using the same format as
  23. .Xr chmod 1 .
  24. .El
  25. .Sh EXIT STATUS
  26. .Ex -std
  27. .Sh SEE ALSO
  28. .Xr mknod 1
  29. .Sh STANDARDS
  30. .Nm
  31. should be compliant with the
  32. IEEE Std 1003.1-2024 (“POSIX.1”)
  33. specification.
  34. .Sh AUTHORS
  35. .An Haelwenn (lanodan) Monnier Aq Mt contact+utils@hacktivis.me