github 的基本用法
上傳到github的新的repository 確認目前狀態 1>> git status 再來initialize一個repository 1>> git init ...
上傳到github的新的repository 確認目前狀態 1>> git status 再來initialize一個repository 1>> git init ...
while 迴圈,當條件不成立時停止 12345678#! /bin/bashi=1while [ 條件 ]do echo "$i" i=$((i+1))done i=$...
定義一個函數mymax 12345int mymax(int *x, int *y){ ... ... return z;} x、y還有z都是pointer,且可以為動態陣列...
123int b=2;int *prt;prt = &b; *prt指向b,可以簡化為 12int b=2;int *prt = &b; 另一個指針用法 12int a[]=&#...
1# comment 加上#可以寫單行comment 12345678: ' commentcommentcomment ' 可以寫多行comment
在bash文件中if else用法 12345678910#! /bin/bashnumber=10if [$number -eq 10]then echo "yes"el...
1>> cat file.txt 顯示file.txt內容 1>> cat > file.txt 寫入內容,然候 crt+c 退出存檔 1>> ca...
Hexo 基本指令 啟動Hexo 1sudo hexo s 會顯示 123INFO Validating configINFO Start processingINFO Hexo is...