zoukankan      html  css  js  c++  java
  • Operating System: Three Easy Pieces --- API (Note)

    Aside: RTFM --- Read The Man Pages

    Many times in this book, when referring to a particular system call or library call, we will

    tell you to read the mannual pages, or man pages for short. Man pages are the original form

    of documantation that exist on UNIX systems; realize that they are created before the thing

    called the web existed. Spending some time reading man pages is a key step in the growth of

    a systems programmers; there are tons of useful tidbits hidden in those pages. Some particularly

    useful pages to read are the man pages for whichever shell you are using and certainly for any

    system calls your program makes (in order to see what return values and error conditions exist).

    Finnay, reading the man pages can save you some embarrassment when you ask colleagues

    about some intricacy of fork(), they may simply reply: "RTFM". This is your colleagues' way of

    gently urging you to Read The Man Pages. The F in RTFM just adds a little color to the phrase......

  • 相关阅读:
    有趣的放大镜
    特效代码
    向数据库添加学生信息。存放在REQUEST对象里
    机房servlet过滤器
    冒泡排序法
    验证码 随机生成器 详解
    生成器 种子
    生日
    在字符串里寻找某字符出现的个数
    课堂随笔
  • 原文地址:https://www.cnblogs.com/miaoyong/p/4855563.html
Copyright © 2011-2022 走看看