- 9月 03 週三 201411:36
[日文] です、ます句型之否定變化
- 9月 02 週二 201409:05
[Message Queue] msgctl()
msgctl() 控制對message queue的操作。
int msgctl(int msqid, int cmd, struct msqid_ds *buf);
第一個參數 int msqid
return 0 成功 、return -1 失敗
int msgctl(int msqid, int cmd, struct msqid_ds *buf);
第一個參數 int msqid
return 0 成功 、return -1 失敗
- 8月 26 週二 201410:01
[Linux] chmod 指令
chmod 400 file - Read by owner
chmod 040 file - Read by group
chmod 004 file - Read by world
chmod 200 file - Write by owner
chmod 020 file - Write by group
chmod 002 file - Write by world
chmod 100 file - execute by owner
chmod 010 file - execute by group
chmod 001 file - execute by world
chmod 040 file - Read by group
chmod 004 file - Read by world
chmod 200 file - Write by owner
chmod 020 file - Write by group
chmod 002 file - Write by world
chmod 100 file - execute by owner
chmod 010 file - execute by group
chmod 001 file - execute by world
- 8月 22 週五 201409:45
[商業日文] 招標用語 入札
標案名稱 入札案件名前
機關 官庁
公告日 公告日
截止日期 締切り時間
機關 官庁
公告日 公告日
截止日期 締切り時間
- 8月 14 週四 201410:53
[ shell ] shell 程式架構
1. 第一行 #! /bin/bash/ 為宣告script使用的shell名稱,用以宣告檔案使用的語法,各個shell功能差不多但語法不同。
例 : /bin/bash
/bin/tcsh
/bin/csh
例 : /bin/bash
/bin/tcsh
/bin/csh
- 8月 14 週四 201410:15
[ Shell ] 執行shell
程式檔名 bin/start.sh
方法一、直接下達命令。
假設工作目錄在home/bin, 則在home/bin底下使用./start.sh執行
方法二、以bash程式來執行。
方法一、直接下達命令。
假設工作目錄在home/bin, 則在home/bin底下使用./start.sh執行
方法二、以bash程式來執行。
- 8月 14 週四 201409:36
[ Shell ] Shell Script

Shell Script
1. 執行shell必須撰寫shell script。
2. shell script為純文字檔。
3. 編輯shell script使之一次執行多個指令。
- 8月 14 週四 201409:11
[ Shell ] 基本概念
- 8月 08 週五 201410:03
[Converter] 漢字轉拼音

日文漢字轉拼音
http://nihongo.j-talk.com/
- 7月 30 週三 201413:30
[C] #if 0 ... #endif
#if 0
....
....
....
....
....
....


