雜記 jenkins中用到的一些lunix命令

2021-08-07 15:13:45 字數 734 閱讀 2619

對於只懂android的人來說,看指令碼和在lunix操作是件很痛苦的事…

這篇只是用來加強自已的記憶而已

解壓縮

unzip *.zip -d path

-d path 解壓後儲存的路徑

檢視命令的歷史記錄

history

檢視掛載的區有哪些

mount

移動資料夾

mv複製

cp 如果要複製整個資料夾,-r

顯示當前資料夾下的檔案

ll -a

-a,包括隱藏檔案

-l,顯示詳細資訊

修改檔案的許可權

chmod

-r,修改當前資料夾下所有檔案的許可權

shell指令碼

條件 if [ ] ;then

fi 判斷某個資料夾是否存在

if [ ! -d filename] ;then

操作 fi

注:相關空格一定要有

判斷某個字串是否含有某個字串(使用萬用字元)

msg1=」hellow」

msg2=」he」

if [[ ms

g1==∗

msg2*]] ;then

fi分割(split)

msg1=」he_hi_he」

msg=echo $msg1 | cut -d _ -f 2

2表示取出第二個

程式設計中用到的一些演算法

1.取任意位 define bit a,b a b 0x01 a is the variable while b is the bit number 從第0位數起,而不是從第1位數起 2.取十進位制i各位上的數給a n a 0 i 10 a 1 i 100 10 a 2 i 1000 100 3.取...

競賽中用到的一些STL

memset a,0,sizeof a 陣列初始化為0 memset b,1,sizeof b 陣列初始化為 1不使用cmp 在上公升序列中找第乙個比k大的 使用cmp 在下降序列中找第乙個比k小的 兩者預設都是從前向後找,lower更靠前,找到的可以等於k bool cmp int a,int b...

php data 函式中用到的一些常量

今天在網上找到了一些,記錄下來留著下次參考 date atom string 原子鐘格式 如 2005 08 15t15 52 01 00 00 date cookie string http cookies 格式 如 mon,15 aug 2005 15 52 01 utc date iso860...