Pipe fitting
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920
  1. tubes
  2. =====
  3. tubes is a small program that provides an interface to irc bots that follows
  4. the UNIX philosophy. Messages to and from the server are exposed in FIFO
  5. buffers in /tmp named for the server and appended with either .in or .out:
  6. the server writes to in and the bot writes to out.
  7. Installing
  8. ==========
  9. tubes' defaults are configured within tubes.c by changing the values of the
  10. server and port variables at compile time. OpenSSL is a dependency of tubes;
  11. download the devel package from your distro.
  12. To install, cd into the cloned directory and `sudo make install`. Some
  13. tweaking of the Makefile may be necessary, e.g. the location of local manpages.
  14. Custom compiler flags can be appended to the defaults by passing a variable to
  15. make, e.g. `CFLAGS=-fPIC`.