主頁 > 知識庫 > Linux bash刪除文件中含“指定內(nèi)容”的行功能示例

Linux bash刪除文件中含“指定內(nèi)容”的行功能示例

熱門標(biāo)簽:怎么用百度地圖標(biāo)注坐標(biāo) 春運地圖標(biāo)注app 上海機(jī)器人外呼系統(tǒng)哪家好 梧州防封電銷卡 昆明電銷機(jī)器人價格 地圖標(biāo)注人員分布 益陽400電話申請辦理流程 400的電話一般從哪里辦理 江西全自動外呼系統(tǒng)報價

本文實例講述了Linux bash刪除文件中含“指定內(nèi)容”的行功能。分享給大家供大家參考,具體如下:

#!/bin/sh
# 功能:    刪除文件中含"指定內(nèi)容"的行
# 運行方式: ./dline.sh c.log  ==> 產(chǎn)生輸出文件: c.log0
array=(
  "rm -f lvr_3531_pf_new"
  "arm-hisiv100-linux-gcc "
  "In function "
  "excess elements in array initializer"
  "warning: multi-line comment"
  "embedded '\\0' in format"
  "__NR_SYSCALL_BASE"
  "this is the location of the previous definition"
  "dereferencing type-punned pointer will break strict-aliasing rules"
  "differ in signedness"
  "but argument is of type"
  "implicit declaration of"
)
if [ $# -lt 1 ]; then
  echo "Usage: $0 logfile>"
  exit
fi
file="$1"0
cp -f $1 $file
function deleteLine()
{
  sed "/$1/d" $file > tmp
  mv -f tmp $file
}
wc -l $file
for line in "${array[@]}"
do
  if [ ${#line} -gt 0 ]  [ ${line:0:1} != "#" ]; then
    deleteLine "$line"
  fi
done
wc -l $file

運行情況:

[feng@bash #69]$./dline.sh c.log
556 c.log0
63 c.log0
[feng@bash #70]$

希望本文所述對大家bash shell學(xué)習(xí)有所幫助。

您可能感興趣的文章:
  • Python實現(xiàn)刪除文件中含“指定內(nèi)容”的行示例
  • php實現(xiàn)遍歷目錄并刪除指定文件中指定內(nèi)容
  • C++實現(xiàn)刪除txt文件中指定內(nèi)容的示例代碼

標(biāo)簽:新疆 河南 惠州 九江 懷化 北京 亳州 贛州

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Linux bash刪除文件中含“指定內(nèi)容”的行功能示例》,本文關(guān)鍵詞  Linux,bash,刪除,文件,中含,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Linux bash刪除文件中含“指定內(nèi)容”的行功能示例》相關(guān)的同類信息!
  • 本頁收集關(guān)于Linux bash刪除文件中含“指定內(nèi)容”的行功能示例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章