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

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

shell中不為人知卻十分有用的命令有哪些-創(chuàng)新互聯(lián)

這篇文章主要介紹shell中不為人知卻十分有用的命令有哪些,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

創(chuàng)新互聯(lián)提供成都做網(wǎng)站、成都網(wǎng)站設(shè)計、網(wǎng)頁設(shè)計,品牌網(wǎng)站建設(shè)1元廣告等致力于企業(yè)網(wǎng)站建設(shè)與公司網(wǎng)站制作,十載的網(wǎng)站開發(fā)和建站經(jīng)驗,助力企業(yè)信息化建設(shè),成功案例突破成百上千,是您實現(xiàn)網(wǎng)站建設(shè)的好選擇.

最近一直在使用Linux操作系統(tǒng),也熟知一些簡單的命令,那么下面我將介紹幾個不為人知卻十分有用的命令:

1.mtr命令,查看mtr運行的主機(jī)和某個網(wǎng)站的直接網(wǎng)絡(luò)連接,如下

mtr google.com

顯示一下內(nèi)容

My traceroute  [v0.75]
localhost.localdomain (0.0.0.0)                        Sun May 18 19:32:36 2014
Keys:  Help   Display mode   Restart statistics   Order of fields   quit
 Packets               Pings
 Host                                Loss%   Snt   Last   Avg  Best  Wrst StDev
 1. 103.31.240.129                    0.0%    42    0.5   0.5   0.5   0.6   0.0
 2. 118.126.0.9                       0.0%    42    0.3   0.3   0.2   0.4   0.0
 3. 210.245.144.37                    0.0%    42    2.9   3.6   2.9  22.1   3.0
 4. 113.10.231.125                    0.0%    42    3.1   3.8   2.7  40.2   5.8
 5. irb9.10g-tc2.wpc.nwtgigalink.com  0.0%    42    2.9   3.1   2.9   5.1   0.4
 6. ae2.10g-pp2.wpc.nwtgigalink.com   0.0%    42    3.2   3.0   2.9   3.2   0.1
 7. google3-10G.hkix.net              0.0%    42    4.6   4.5   4.3   4.6   0.1
 8. 209.85.248.62                     0.0%    42    5.0   5.3   4.8  13.7   1.6
 9. 209.85.241.171                    0.0%    42    5.3   5.2   5.1   5.7   0.1
10. hkg03s16-in-f8.1e100.net          0.0%    41    4.8   4.9   4.7   5.0   0.1


2.nl命令,給所查看的文本加上行號,如下

cat a.log
aa

nl a.log
1 aa
 3.shuf命令,隨機(jī)從一個文件或者一個文件夾中選取行或者文件

[root@localhost mwq]# ls | shuf -n1

a.log
[root@localhost mwq]# ls | shuf -n1
a.log
[root@localhost mwq]# ls | shuf -n1
a.log
[root@localhost mwq]# ls | shuf -n1
20140512.sql
[root@localhost mwq]# ls | shuf -n1
20140512.sql
[root@localhost mwq]# ls | shuf -n1
a.log
[root@localhost mwq]# vim a.log
[root@localhost mwq]# cat a.log | shuf -n1
aa
[root@localhost mwq]# cat a.log | shuf -n1
dd
[root@localhost mwq]# cat a.log | shuf -n1
aa
[root@localhost mwq]# cat a.log | shuf -n1
ff


 當(dāng)然你也可以改變參數(shù)如cat a.log | shuf -n2獲取兩行內(nèi)容。

4.last命令,查看上次登錄或者登出的用戶

root     pts/4        xxxxxxxxxxx    Sun May 18 19:12   still logged in 

root     pts/4        xxxxxxxxxxx    Fri May 16 09:39 - 15:17  (05:38)   
root     pts/4        xxxxxxxxxxx    Wed May 14 17:13 - 18:01  (00:48)   
root     pts/4        xxxxxxxxxxx    Mon May 12 10:50 - 13:38  (02:47)   
root     pts/4        xxxxxxxxxxx    Mon May 12 10:48 - 10:50  (00:02)   
root     pts/1        xxxxxxxxxxx    Fri May  9 11:58   still logged in


5.pstree以樹的結(jié)構(gòu)顯示當(dāng)前的進(jìn)程節(jié)點

init─┬─abrt-dump-oops
 ├─abrtd
 ├─acpid
 ├─atd
 ├─auditd───{auditd}
 ├─avahi-daemon───avahi-daemon
 ├─console-kit-dae───63*[{console-kit-da}]
 ├─crond
 ├─dbus-daemon───{dbus-daemon}
 ├─hald───hald-runner─┬─hald-addon-acpi
 │    └─hald-addon-inpu
 ├─irqbalance
 ├─java───330*[{java}]
 ├─master───qmgr
 ├─6*[mingetty]
 ├─mysqld_safe───mysqld───11*[{mysqld}]
 ├─rhsmcertd───rhsmcertd
 ├─rsyslogd───3*[{rsyslogd}]
 ├─sshd─┬─4*[sshd───bash]
 │  └─sshd───bash───pstree
 ├─stap-serverd
 ├─udevd───2*[udevd]
 └─vsftpd


以上是“shell中不為人知卻十分有用的命令有哪些”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!


網(wǎng)站欄目:shell中不為人知卻十分有用的命令有哪些-創(chuàng)新互聯(lián)
轉(zhuǎn)載源于:http://weahome.cn/article/idohc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部