“说过的话可以不算,爱过的人可以再换”,好可怕的的一句话。
原文


Thu 21 Jun 2007

what.c

#include <stdio.h>

int main()
{
printf("What’s up?\n");
return 0;
}

complie:

$gcc -o what what.c

execute:

$./what

result:

What’s up

Thu 14 Jun 2007

  • how do delete a directory that is not empty?
    rm -rf MYDIR
  • how to extract *.tar.gz files?
    tar version 1.13:
    tar -zxf MYTAR.tar.gz
    tar version 1.16:
    tar -xf MYTAR.tar.gz
  • why man produces ESC?
    to solve this problem Please change two lines in /usr/share/misc/man.conf to read

    NROFF /usr/bin/nroff -c -mandoc
    PAGER /usr/bin/less -isrR
    see here

  • Cannot open the message catalog “man” for locale “zh_CN.UTF-8″ 的解决办法
    export LANG=C
    see here