Pipe fitting
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 jaren geleden
7 jaren geleden
7 jaren geleden
7 jaren geleden
7 jaren geleden
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`.