91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

shell 腳本應用《八》多個腳本命令例子

發布時間:2020-06-29 15:04:38 來源:網絡 閱讀:146 作者:wx5cb5dcd871bbc 欄目:系統運維

寫一個腳本,實現判斷192.168.0.0/24網絡里,當前在線用戶的IP有哪些
命令:

nmap -sP 192.168.0.0/24
腳本1

#!/bin/bash

for I in seq 1 255
do
ping -c 2 -W 2 192.168.0.$I &>/dev/null
if [ $? -eq 0 ]
then
echo -e "192.168.0.$I is up."
else
echo -e "192.168.0.$I is down."
fi
done

單詞及字母去重排序案例

[root@localhost scripts]# sed 's#[,.]##g' <test.log|tr " " "\n"|sort|uniq -c |sort -rn|head -5
4 the
3 to
2 was
2 months
2 I
[root@localhost scripts]#

[root@localhost scripts]# tr " ," "\n" <test.log|awk '{S[$1]++}END{for(k in S) print S[k],k}'|sort -rn|head -5
4 the
3 to
2 was
2 months
2 I
[root@localhost scripts]#

[root@localhost scripts]# awk -F "[ ,.]+" '{for(i=1;i<NF;i++)S[$i]++}END{for(k in S) print S[k],k}' test.log |sort -rn|head -5
4 the
3 to
2 was
2 months
2 I
[root@localhost scripts]#

[root@localhost scripts]# sed 's#[,. ]##g' test.log|grep -o "."|sort|uniq -c|sort -rn|head -5
33 t
20 o
19 e
18 n
17 i
[root@localhost scripts]#

按字母出現頻率降序排序

方法1:去空格特殊字符后,然后利用grep的-o將字符豎向排列后處理。
[root@localhost scripts]# sed 's#[,. ]##g' test.log|grep -o "."|sort|uniq -c|sort -rn|head -5
33 t
20 o
19 e
18 n
17 i
[root@localhost scripts]#

[root@localhost scripts]# sed 's#[,. ]##g' test.log|grep -o "."|awk '{S[$1]++}END{for(k in S) print S[k],k}'|sort -rn|head -5
33 t
20 o
19 e
18 n
17 i
[root@localhost scripts]#

[root@localhost scripts]# sed 's#[,. ]##g' test.log|awk -F "" '{for(i=1;i<NF;i++)S[$i]++}END{for(k in S) print S[k],k}'|sort -rn|head -5
33 t
20 o
18 n
18 e
17 i
[root@localhost scripts]#

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

醴陵市| 枣庄市| 宁陵县| 泰安市| 深圳市| 靖边县| 山阳县| 黔江区| 赞皇县| 宁陵县| 东城区| 清远市| 庆元县| 连平县| 苗栗县| 邵武市| 珠海市| 会理县| 海盐县| 庆元县| 原平市| 普兰店市| 铜鼓县| 襄樊市| 湖北省| 织金县| 德阳市| 泽库县| 信丰县| 建瓯市| 临洮县| 汤阴县| 新巴尔虎右旗| 伊宁市| 富源县| 昭平县| 天镇县| 蓝田县| 香河县| 益阳市| 奎屯市|