●要讀取的txt檔的權限一定要為646,而非一般的644。
●文字用雙引號括住"",如 "1234";數字則不用,如:1234。
●變數前一定要加上錢字號 $。
●PHP程式碼要放在 <? ?> 之中,檔案副檔名要為 .php。
From:http://sean.infor.org/phpteach/phpteach.htm
●要讀取的txt檔的權限一定要為646,而非一般的644。
●文字用雙引號括住"",如 "1234";數字則不用,如:1234。
●變數前一定要加上錢字號 $。
●PHP程式碼要放在 <? ?> 之中,檔案副檔名要為 .php。
From:http://sean.infor.org/phpteach/phpteach.htm
#ls -al /dev/std* crw-rw-rw- 1 root wheel 22, 2 12 19 03:11 /dev/stderr ^^^ crw-rw-rw- 1 root wheel 22, 0 12 12 11:01 /dev/stdin crw-rw-rw- 1 root wheel 22, 1 12 19 11:37 /dev/stdout ^^^ &2 and &1 跟這兩個東西有關嗎?
From:FreeBSD轉信版."錯過與等待" <..@.....>
假設我們要寄信給本機的 root:
$ mail root
如果我們要寄信給非本機的使用者,可以使用的收件人格式如下:
* user@cc.ncu.edu.tw
* user@[140.115.1.13]
執行了 mail 之後,程式會先要求我們輸入郵件主旨,輸入後就可以開始打本文了。當完成本文的編
Awk 是一種字串處理工具,不論在指令模式或者撰寫 Shell Script 時也十分有用,以下是 Awk 的使用例子:
# awk '{ print }' /etc/passwd
用 Putty 的時候,預設的設定是沒辦法用右邊的數字鍵盤來輸入數字和符號,要把 Teminal-Features 裡面的 Disable application keyboard mode 的選項勾選,這樣就可以用了
#cd /usr/ports/net-mgmt/trafd
#make install clean
它會跑一隻 daemon , 去 log 指定 interface 收到封包的資料
預設是記下 packet 的 protocol、src ip、dst ip、src port、dst port、size
同一個 socket 的資料 , 會把 size 往上累加
因此不會說收到多少 packets 就有幾筆資料 …
用 ports 簡單裝完後
到 /etc/rc.conf 加幾行
trafd_enable="YES"
trafd_ifaces="rl0" # depend on your interface
trafd_flags="-p" # don't put interface into promiscuous mode
trafd_log="/var/log/trafd.log" # daemon log position
From:http://blog.outian.net/archives/211
在 FreeBSD 裡面新增硬碟其實很簡單。
首先把硬碟掛上去,你可以用 DOS 的 pfdisk.exe 來分割新的 partition,或是以 DOS 的 fdisk.exe 割一個 primary partition,再用 pfdisk.exe 把 partition ID 改成 165 (十進位)。
* 如果你想用 FreeBSD 的 fdisk,在進入 FreeBSD 後先以 Step-4 的方法建立 /dev/sd0s2*,再執行 fdisk sd0 觀察 sd0 的硬碟分割狀況,如下範例︰(這是 1G 的 SCSI Fireball,已經割了一個 primary FreeBSD partition)
From:http://www.douzhe.com/mirrors/fanqiang.com/a1/b2/20010416/150114_b.html
流程控制
1.if 語句
if [ ... ]; then ... elif [ ... ]; then ... else ... fi 其中用 "[ ]" 表示條件測試,注意方括號周圍的空格。
wget 中文檔名變亂碼
中文檔名在平常的情況下會被編碼, 但是在 --cut-dirs 時又是正常的, 那就大家用 --cut-dirs, 或是使用 outta-port/wget 吧
wget -r -np -nH --cut-dirs=3 ftp://freebsd.sinica.edu.tw/pub/statue/test/ 測試.txt wget -r -np -nH -nd ftp://freebsd.sinica.edu.tw/pub/statue/test/ %B4%FA%B8%D5.txt wget "ftp://freebsd.sinica.edu.tw/pub/statue/test/*" %B4%FA%B8%D5.txt
wget 的安裝:
# cd /usr/ports/outta-port/wget
# make install clean
From:FreeBSD Chinese HOWTO
消除 FreeBSD 檔案中斷行符號常常多出的^M:
cat filename | tr -d 'r' > newfile
最近迴響