真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

linux基礎(chǔ)之history、ls、cat、tac學(xué)習(xí)筆記-創(chuàng)新互聯(lián)

 5、history命令
        作用:查看和使用歷史命令(最多紀(jì)錄1000條)
        保存位置:~/.bash_history
        1、在啟動(dòng)終端的時(shí)候,會(huì)自動(dòng)從~/.bash_history中讀取歷史命令,加載到內(nèi)存中
        2、在終端中執(zhí)行命令,命令的歷史記錄是保存在內(nèi)存中
        3、在關(guān)閉終端的時(shí)候,會(huì)將內(nèi)存中的歷史命令自動(dòng)保存到~/bash_history中
        history的快捷操作
        !num:執(zhí)行歷史命令中編號(hào)為num的歷史命令
        !string:在歷史命令中找以指定字符串為開頭的命令執(zhí)行一次,從下向上進(jìn)行查找
        ?。。簣?zhí)行的是上一個(gè)命令
        !-num:執(zhí)行歷史命令中倒數(shù)第num條命令
        如果保留了歷史命令,******了我們的系統(tǒng),通過歷史命令,知道服務(wù)器進(jìn)行了哪些操作。有些時(shí)候需要對(duì)歷史命令進(jìn)行控制。
        -c:清空歷史命令 (內(nèi)存中的)
        在啟動(dòng)終端的時(shí)候,會(huì)從~/.bash_history讀取歷史命令
        [root@localhost ~]# history -c
        [root@localhost ~]# 
        [root@localhost ~]# history
        1  history
        -a:手動(dòng)將內(nèi)存中的歷史命令保存到文件中
        -r:重新從~/.bash_history中讀取歷史命令
        -d: num:刪除指定編號(hào)的歷史命令(***別人系統(tǒng)的時(shí)候,抹掉自己的操作命令)

        6、ls命令
        作用:顯示當(dāng)前或者指定目錄下的文件
        選項(xiàng)
        -a:顯示目錄下的全部文件(包括隱藏文件)
        -l:顯示文件和目錄的詳細(xì)屬性
        -d:顯示目錄自身(如果不使用-d則是顯示目錄中的文件)
        -h:結(jié)合-l使用,以易讀的方式顯示目錄的大小,(只顯示
        文件的大小,不顯示目錄的大小)
        -t: 按照文件的修改時(shí)間排序,將最后修改的文件排在前邊
        -r:結(jié)合-l -t使用,倒序排序
        例子:顯示跟下有哪些文件
        [root@localhost ~]# ls /
        1.txt  2.txt  bin   cgroup  etc   lib    lost+found  misc  net  proc  sbin     srv  tmp  var
        1.xtx  3.txt  boot  dev     home  lib64  media       mnt   opt  root  selinux  sys  usr
        黑白顏色是一般文件,藍(lán)顏色的是目錄
        例子:顯示當(dāng)前目錄下有哪些文件
        #ls ./
        #ls
        (當(dāng)前位置是./,但是可以省略)
        例子:創(chuàng)建文件并查看文件的詳細(xì)信息
        [root@localhost tmp]# mkdir book
        [root@localhost tmp]# touch book/{linux,python,go}
        [root@localhost tmp]# ls book/
        go  linux  python
        [root@localhost tmp]# ls -l book/
        total 0
        -rw-r--r-- 1 root root 0 Apr 12 18:03 go
        -rw-r--r-- 1 root root 0 Apr 12 18:03 linux
        -rw-r--r-- 1 root root 0 Apr 12 18:03 python
        例子:顯示a.txt的詳細(xì)屬性
        #ls -l a.txt
        例子:顯示book目錄的詳細(xì)屬性
        [root@localhost tmp]# ls -ld book
        drwxr-xr-x 2 root root 4096 Apr 12 18:03 book
        [root@localhost tmp]# cd book/
        [root@localhost book]# ls
        go  linux  python
        [root@localhost book]# vi go
        [root@localhost book]# vi linux
        [root@localhost book]# vi python 
        [root@localhost book]# ls -l
        total 12
        -rw-r--r-- 1 root root 164 Apr 12 18:11 go
        -rw-r--r-- 1 root root  83 Apr 12 18:13 linux
        -rw-r--r-- 1 root root 165 Apr 12 18:13 python
        ls -lh
        total 45M  
        -rw-r--r-- 1 root root 164 Apr 12 18:11 go
        -rw-r--r-- 1 root root 45M Apr 12 19:01 linux  
        -rw-r--r-- 1 root root 98K Apr 12 18:48 python
        -h只顯示文件的大小,不顯示目錄的大小
        例:
        [root@localhost book]# cd ..
        [root@localhost tmp]# ls -l -h
        total 4.0K
        drwxr-xr-x 2 root root 4.0K Apr 12 19:04 book
        顯示目錄的大小用du命令,此處不過多解釋。講解磁盤的時(shí)候會(huì)詳情講解。
        -t將最后修改的文件排在前面
        [root@localhost tmp]# cd book/
        [root@localhost book]# ls
        go  linux  python
        [root@localhost book]# ls -l
        total 45676
        -rw-r--r-- 1 root root      164 Apr 12 18:11 go
        -rw-r--r-- 1 root root 46661650 Apr 12 19:01 linux
        -rw-r--r-- 1 root root    99824 Apr 12 18:48 python
        [root@localhost book]# vi linux 
        [root@localhost book]# ls -l -t
        total 45676
        -rw-r--r-- 1 root root 46661656 Apr 12 22:27 linux
        -rw-r--r-- 1 root root    99824 Apr 12 18:48 python
        -rw-r--r-- 1 root root      164 Apr 12 18:11 go
        [root@localhost book]# vi go 
        [root@localhost book]# ls -l -t
        total 45676
        -rw-r--r-- 1 root root      167 Apr 12 22:27 go
        -rw-r--r-- 1 root root 46661656 Apr 12 22:27 linux
        -rw-r--r-- 1 root root    99824 Apr 12 18:48 python
        絕對(duì)路徑和相對(duì)路徑
        絕對(duì)路徑:就是從根目錄下開始查找
        相對(duì)路徑:相對(duì)當(dāng)前位置的路徑
        在home目錄下的a中創(chuàng)建一個(gè)文件a.txt
        [root@localhost home]# mkdir a 
        [root@localhost home]# touch /home/a/a.txt 絕對(duì)路徑
        [root@localhost home]# touch ./a/a.txt 相對(duì)路徑(前提必須在home之下)
        [root@localhost home]# touch a/a.txt   相對(duì)路徑(前提必須在home之下)
        touch ./a/a.txt(前提必須在home之下)    
        touch a/a.txt  (前提必須在home之下)
        例子:切換到/etc/init.d目錄下
        要求1:在init.d下新建目錄abc
        要求2:在/etc下新建目錄abc
        1:方法1:相對(duì)路徑
        [root@localhost home]# cd /etc/init.d
        [root@localhost init.d]# mkdir abc
        [root@localhost init.d]# ls
        abc        autofs            cups        kdump         netconsole  ntpdate      rdisc        
        [root@localhost ~]# mkdir /etc/init.d/abc
        [root@localhost ~]# .ls /etc/init.d/
        abc        autofs            cups        kdump         netconsole  ntpdate      rdisc        rpcsvcgssd  sssd
        絕對(duì)路徑:mkdir /etc/abc
        相對(duì)路徑:mkdir ../abc
        7、cat命令 
        全稱:concatenate(連接并顯示:拼接多個(gè)文件)
        作用:顯示一個(gè)文本文件中的內(nèi)容
        格式:cat [選項(xiàng)] 文件
        選項(xiàng):
        -n:在每行的前面顯示行號(hào)
        361  cat /etc/init.d/halt
        362  cat -n /etc/init.d/halt
        -E:顯示出來(lái)行結(jié)束符
        補(bǔ)充:windows中的文件的換行符:\n
        linux中的文件的換行符:$ 
        (這樣的符號(hào)都是隱性符號(hào)-都是默認(rèn)不可見的)
        8、tac命令
        作用:將一個(gè)文件中的內(nèi)容倒序顯示出來(lái)
      (最后一行變成第一行)
        [root@localhost tmp]# vi 1.txt
        11111
        2222
        3333
        444
        555
        [root@localhost tmp]# tac 1.txt
        555
        444
        3333
        2222
        11111

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。

成都創(chuàng)新互聯(lián)公司制作網(wǎng)站網(wǎng)頁(yè)找三站合一網(wǎng)站制作公司,專注于網(wǎng)頁(yè)設(shè)計(jì),網(wǎng)站制作、成都網(wǎng)站建設(shè),網(wǎng)站設(shè)計(jì),企業(yè)網(wǎng)站搭建,網(wǎng)站開發(fā),建網(wǎng)站業(yè)務(wù),680元做網(wǎng)站,已為成百上千服務(wù),成都創(chuàng)新互聯(lián)公司網(wǎng)站建設(shè)將一如既往的為我們的客戶提供最優(yōu)質(zhì)的網(wǎng)站建設(shè)、網(wǎng)絡(luò)營(yíng)銷推廣服務(wù)!
分享名稱:linux基礎(chǔ)之history、ls、cat、tac學(xué)習(xí)筆記-創(chuàng)新互聯(lián)
轉(zhuǎn)載源于:http://weahome.cn/article/gdgii.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部