01.1.取得和設置當前目錄(即該進程從中啟動的目錄)的完全限定路徑。
02.string str = System.Environment.CurrentDirectory;

Allen 發表在 痞客邦 留言(0) 人氣()

        enum color { red, blue, green };
        enum bdc { yellow, black , blue };

Allen 發表在 痞客邦 留言(0) 人氣()

以 tab 為分隔符 

sort -t '$\t' -k 1 

Allen 發表在 痞客邦 留言(0) 人氣()

更改.bashrc 

完成後,執行source .bashrc

Allen 發表在 痞客邦 留言(0) 人氣()

use command : mktemp 

this command can create a temp file for you ,then delete after the program end.

Allen 發表在 痞客邦 留言(0) 人氣()

git config --global user.email "$mail"

git congit --global user.name "$name"

Allen 發表在 痞客邦 留言(0) 人氣()

若要新增progect ,

方法一 : 1. 可以直接在"管理機器"上 , 編輯gitosis-admin/gitosis.conf  , 新增project 資料 , 如下

Allen 發表在 痞客邦 留言(0) 人氣()

1.

apt-get install wine

Allen 發表在 痞客邦 留言(0) 人氣()

https://github.com/yangyangwithgnu/use_vim_as_ide/blob/master/README.md#0.1


Allen 發表在 痞客邦 留言(0) 人氣()

smbmount //IP/分享資源 /掛載點 [-o options]
參數:
-o 後面接的參數 (options) 常用的有底下這些:
username=你的登入帳號:例如 username=dmtsai
password=你的登入密碼:需要與上面 username 相對應啊!
iocharset=本機的語系編碼方式,如 big5 或 utf8 等等;
codepage=遠端主機的語系編碼方式,例如繁體中文為cp950

範例:以 dmtsai 的身份將其家目錄掛載至 /mnt/samba 中
[root@linux ~]# smbmount //127.0.0.1/dmtsai /mnt/samba -o username=dmtsai,password=pw_test,codepage=cp950


mount -t smbfs //127.0.0.1/dmtsai /mnt/samba -o username=dmtsai,password=pw_test,codepage=cp950,iocharset=big5


Allen 發表在 痞客邦 留言(0) 人氣()