關於sed的問題 - Linux

By Linda
at 2012-08-23T04:02
at 2012-08-23T04:02
Table of Contents
declare -a head=(`sed -rn 's/^(.{1}).*/\1/p' temp.prep |xargs`)
for ((i=1; i<=7; i++))
do
test "${head[$((i-1))]}" != "${head[$i]}" && sed -i "$i"G temp.prep
done
※ 引述《inmaze (拖鞋)》之銘言:
: 就是我有一筆資料叫temp.prep
: 假設是這樣好了
: 0
: 0
: 0
: 0
: 1
: 1
: 1
: 1
: 我想要在0和1之間差一行空格
: for ((i=1;i<=8;i++))
: do
: a=`head -n ${i} temp.prep | tail -n 1 | awk '{print $1}'`
: j=$(($i+1))
: b=`head -n ${j} temp.prep | tail -n 1 | awk '{print $1}'`
: if [ "${b}" != "${a}" ] ; then
: sed -i '${i}G' temp.prep
: fi
: done
: 但是出現了這個錯誤
: sed: -e expression #1, char 0: unmatched `{'
: 請問板友能幫我解釋一下發生什麼事嗎?
--
for ((i=1; i<=7; i++))
do
test "${head[$((i-1))]}" != "${head[$i]}" && sed -i "$i"G temp.prep
done
※ 引述《inmaze (拖鞋)》之銘言:
: 就是我有一筆資料叫temp.prep
: 假設是這樣好了
: 0
: 0
: 0
: 0
: 1
: 1
: 1
: 1
: 我想要在0和1之間差一行空格
: for ((i=1;i<=8;i++))
: do
: a=`head -n ${i} temp.prep | tail -n 1 | awk '{print $1}'`
: j=$(($i+1))
: b=`head -n ${j} temp.prep | tail -n 1 | awk '{print $1}'`
: if [ "${b}" != "${a}" ] ; then
: sed -i '${i}G' temp.prep
: fi
: done
: 但是出現了這個錯誤
: sed: -e expression #1, char 0: unmatched `{'
: 請問板友能幫我解釋一下發生什麼事嗎?
--
Tags:
Linux
All Comments
Related Posts
Windows端的網路印表機

By Madame
at 2012-08-22T18:54
at 2012-08-22T18:54
resource0 可以砍掉嗎???

By William
at 2012-08-22T18:45
at 2012-08-22T18:45
/usr/bin/make 套件

By Gary
at 2012-08-22T10:19
at 2012-08-22T10:19
有關顯卡驅動程式

By Franklin
at 2012-08-22T04:06
at 2012-08-22T04:06
自己寫的「遊戲剋星」

By Kama
at 2012-08-21T13:09
at 2012-08-21T13:09