Google推出中文版網站導覽服務

Google Sitemaps(網站導覽服務)

Google Sitemaps 說明

簡單說是方便 Google 的一個非常好的主意, 讓大家在管理的網站上, 自行跟他說該抓哪些檔案, 這樣子他就不用派蜘蛛來從頭抓到尾了, 有造福雙方的意思.

可以參考: 如何支持Google Sitemaps 的介紹

閱讀全文〈Google推出中文版網站導覽服務〉

Unix 基本指令操作

IO Redirection: File Descriptors
file descriptor 0 is associated with STDIN, 1 with STDOUT, and 2 with STDERR.
ex: 2>&1 將 錯誤訊息(STDERR) 直接導向 標準輸出(STDOUT)
ex: 2>& > /tmp/output
ex: >& > /tmp/output (標準輸出 輸入都一起導到 /tmp/output file)

< input file : read standard input from file
> output file : write standard output to file
>> output file: append standard output to file
>& error file : write error message to file
| command2 : pipe output as input for command2

ex: ls 2>/dev/null 1>/tmp/output
& => 指定到 &1 的變數(不然會變成 1 的 file)

閱讀全文〈Unix 基本指令操作〉