第五周作業

2022-08-23 15:00:09 字數 1262 閱讀 3359

1、查詢/etc目錄下大於1m且型別為普通檔案的所有檔案

解答:find /etc/ -size +1m -type f

-size [-|+]#unit 單位

+#unit:x>#

-type type:根據檔案型別查詢

f:普通檔案

執行效果:

2、打包/etc/目錄下面所有conf結尾的檔案,壓縮包名稱為當天的時間,並拷貝到/usr/local/src目錄備份。

解答:find /etc/ -type f -name "*.conf"|xargs tar -zcvf /usr/local/src/date +%f.tar.gz

執行效果:

3、利用sed 取出ifconfig命令中本機的ipv4位址

解答:ifconfig eth0|sed -n '2p'|sed -r 's/.inet(.)netmask.*/\1/'

執行效果:

4、刪除/etc/fstab檔案中所有以#開頭,後面至少跟乙個空白字元的行的行首的#和空白字元

解答: sed -r 's/^#?(.*)/\1/' /etc/fstab|sed '/^$/d'

執行效果:

5、處理/etc/fstab路徑,使用sed命令取出其目錄名和基名

解答:取出目錄名echo '/etc/fstab'|sed -r 's#^/(.)/(.)#\1#'

取出基名echo '/etc/fstab'|sed -r 's#^/(.)/(.)#\2#'

執行效果:

第五周作業

includeusing namespace std class student 用引數的初始化表對資料成員初始化。void max student arr void display private int num int score void student display void studen...

第五周作業

5求自然對數 include using namespace std int main cout e 6求圓周率 include include using namespace std int main cout pi約等於 7 include using namespace std int mai...

第五周作業

注意 總時間限制 1000ms 記憶體限制 65536kb 描述寫乙個mystring 類,使得下面程式的輸出結果是 1.abcd efgh abcd 2.abcd 3.4.abcd efgh 5.efgh 6.c 7.abcd 8.ijal 9.ijal mnop 10.qrst abcd 11....