1. 程式人生 > 其它 >找到了大一是做的Linux命令筆記,哈哈,純小白才不會笑

找到了大一是做的Linux命令筆記,哈哈,純小白才不會笑

第一部分

練習linux基本命令:touch xx(建立檔案xx及修改文xx件建立時間)

            ll xx、ls -a xx(檢視檔案xx的詳細屬性及建立時間)

          ls -l(檢視檔案xx的詳細屬性)

          vi (文字編輯器)

          cat xx(檢視檔案xx的全部內容)、more(分頁檢視檔案xx的內容)

          file xx(檢視檔案xx的型別)

1、新建(touch)一個名字為wenzhang的檔案,檢視其詳細屬性(ll/ls -s xx),檢視建立時間。

  [root@localhost ~]# touch wenzhang

  [root@localhost ~]# ll/ls -s wenzhang

2、為檔案新增一行內容,檢視檔案內容(cat)。

  [root@localhost ~]# vi wenzhang

  [root@localhost ~]# cat wenzhang

3、修改檔案建立時間(touch xx),對比之前檔案建立時間。

  [root@localhost ~]# touch wenzhang

  [root@localhost ~]# ll/ls -s wenzhang

4、新建(touch)一個名字為hello123的檔案,為檔案新增多行內容,檢視檔案內容(more)。

  [root@localhost ~]# touch hello123

  [root@localhost ~]# vi hello123

  [root@localhost ~]# more hello123

5、新建一個檔案ruanjian,不新增任何內容。

  [root@localhost ~]# touch ruanjian

6、分別檢視wenzhang、hello123和ruanjian檔案的檔案型別。

  [root@localhost ~]# ls -s wenzhang

  [root@localhost ~]# ls -l hello123

  [root@localhost ~]# ll ruanjian

第二部分

練習linux基本命令:head -6 xx(顯示檔案xx前6行)

         tail -3 xx(顯示檔案xx後3行)

         ln -s xx(為檔案xx建立軟連結)

         ln xx(為檔案xx建立硬連結)

         ln -l xx(檢視檔案xx詳細屬性)      

         ls -a xx、ll xx(檢視其詳細屬性及建立時間)

1、顯示hello123檔案前6行內容。

  [root@localhost ~]# head -6 hello123

2、顯示hello123檔案後3行內容。

  [root@localhost ~]# tail -5 hello123

3、為hello123建立軟連結,並命名為hellosoft,並檢視hellosoft檔案詳細屬性。

  [root@localhost ~]# ln -s hello123 hellosoft

[root@locatlhost ~]# ln -l hellosoft

4、為wenzhang建立硬連結,並檢視檔案詳細屬性。

  [root@localhost ~]# ln wenzhang

  [root@localhost ~]# ls -l wenzhang