lab5 Pipe Signals
  • Introduction
  • Signals
    • kill() system call
    • Custom signal handler
  • Knowing about pipe
    • Pipe Overview
    • System call pipe()
  • Learn to use pipe
    • Pipe Creation
    • Pipe with fork
    • Exercise 1
  • Connecting two programs with pipe
    • Implement ls | less in C
  • Shell Examples
    • Get Current Path
    • Change Directory
    • Change Environment Variables
  • Reference
Powered by GitBook
On this page

Was this helpful?

Reference

If you want to know more IPC mechanism,

  • The Linux man-pages project documents the Linux kernel and C library interfaces that are employed by user-space programs. You can take it as an alternative of man command

  • If you want to learn more about programming under Linux, Advanced Programming in the UNIX Environment is a good material for you to read.

PreviousChange Environment Variables

Last updated 5 months ago

Was this helpful?