Sun 1 Jul 2007
“说过的话可以不算,爱过的人可以再换”,好可怕的的一句话。
原文
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
rm -rf MYDIR
tar version 1.13:
tar -zxf MYTAR.tar.gz
tar version 1.16:
tar -xf MYTAR.tar.gz
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
export LANG=C
see here