web-dev-qa-db-ja.com

bashスクリプトとsedを使用して文字列を改行で置き換えるにはどうすればよいですか?

次の入力があります。

Value1|Value2|Value3|Value4@@ Value5|Value6|Value7|Value8@@ Value9|etc...

私のbashスクリプトでは、@@を改行で置き換えたいと思います。私はsedを使ってさまざまなことを試しましたが、うまくいきません。

line=$(echo ${x} | sed -e $'s/@@ /\\\n/g')

最終的に、この入力全体を行と値に解析する必要があります。多分私はそれについて間違っています。 @@を改行で置き換え、次にIFS='|'を設定して入力をループし、値を分割することを計画していました。もっと良い方法があれば教えてください。私はまだシェルスクリプトの初心者です。

13
Kevin Custer

これは動作します

sed 's/@@ /\n/g' filename

@@を新しい行に置き換えます

9
prudviraj

純粋なBASH文字列操作の使用:

eol=$'\n'
line="${line//@@ /$eol}"

echo "$line"
Value1|Value2|Value3|Value4
Value5|Value6|Value7|Value8
Value9|etc...
5
anubhava

tr 関数の使用をお勧めします

echo "$line" | tr '@@' '\n'

例えば:

[itzhaki@local ~]$ X="Value1|Value2|Value3|Value4@@ Value5|Value6|Value7|Value8@@"
[itzhaki@local ~]$ X=`echo "$X" | tr '@@' '\n'`
[itzhaki@local ~]$ echo "$X"
Value1|Value2|Value3|Value4

 Value5|Value6|Value7|Value8
4
itzhaki

Perlを使用することを気にしない場合:

echo $line | Perl -pe 's/@@/\n/g'
Value1|Value2|Value3|Value4
 Value5|Value6|Value7|Value8
 Value9|etc
2

最後にそれを使って動作させました:

sed 's/@@ /'\\\n'/g'

単一引用符を\\ nの周りに追加すると、何らかの理由で役立つように思われました

2
Kevin Custer

どうですか:

for line in `echo $longline | sed 's/@@/\n/g'` ; do
    $operation1 $line
    $operation2 $line
    ...
    $operationN $line
    for field in `echo $each | sed 's/|/\n/g'` ; do
        $operationF1 $field
        $operationF2 $field
        ...
        $operationFN $field
    done
done
1
Tripp Kinetics

これで、Perlを使用してこれを完了し、いくつかの簡単なヘルプを提供します。

$ echo "hi\nthere"
hi
there

$ echo "hi\nthere" | replace_string.sh e
hi
th
re

$ echo "hi\nthere" | replace_string.sh hi


there

$ echo "hi\nthere" | replace_string.sh hi bye
bye
there

$ echo "hi\nthere" | replace_string.sh e super all
hi
thsuperrsuper

replace_string.sh

#!/bin/bash

ME=$(basename $0)
function show_help()
{
  IT=$(cat <<EOF

  replaces a string with a new line, or any other string, 
  first occurrence by default, globally if "all" passed in

  usage: $ME SEARCH_FOR {REPLACE_WITH} {ALL}

  e.g. 

  $ME :       -> replaces first instance of ":" with a new line
  $ME : b     -> replaces first instance of ":" with "b"
  $ME a b all -> replaces ALL instances of "a" with "b"
  )
  echo "$IT"
  exit
}

if [ "$1" == "help" ]
then
  show_help
fi
if [ -z "$1" ]
then
  show_help
fi

STRING="$1"
TIMES=${3:-""}
WITH=${2:-"\n"}

if [ "$TIMES" == "all" ]
then
  TIMES="g"
else
  TIMES=""
fi

Perl -pe "s/$STRING/$WITH/$TIMES"
0
Brad Parks