web-dev-qa-db-ja.com

複数のファイルテキストをsedに置き換えます

テキストファイル内の一部のテキストをsedで置き換えようとしましたが、複数のファイルでそれを行う方法がわかりません。
私が使う:

sed -i -- 's/SOME_TEXT/SOME_TEXT_TO_REPLACE/g /path/to/file/target_text_file

複数のファイルを使用する前に、このコマンドを使用してテキストファイル内のターゲットテキストファイルのパスを印刷しました。

find /path/to/files/ -name "target_text_file" > /home/user/Desktop/target_files_list.txt

target_files_list.txtに従ってsedを実行したい。

5
elanozturk

while ... doループを使用してファイルをループできます。

$ while read i; do printf "Current line: %s\n" "$i"; done < target_files_list.txt

あなたの場合、printf ...sedコマンドに置き換えてください。

$ while read i; do sed -i -- 's/SOME_TEXT/SOME_TEXT_TO_REPLACE/g' "$i"; done < target_files_list.txt

ただし、findのみを使用して目的を達成できることに注意してください。

$ find /path/to/files/ -name "target_text_file" -exec sed -i -- 's/SOME_TEXT/SOME_TEXT_TO_REPLACE/g' {} \;

-execオプションの詳細については、man find | less '+/-exec 'を実行してください。

   -exec command ;

          Execute command; true if 0 status is returned.  All
          following arguments to find are taken to be arguments to
          the command until an argument consisting of `;' is
          encountered.  The string `{}' is replaced by the current
          file name being processed everywhere it occurs in the
          arguments to the command, not just in arguments where it
          is alone, as in some versions of find.  Both of these
          constructions might need to be escaped (with a `\') or
          quoted to protect them from expansion by the Shell.  See
          the EXAMPLES section for examples of the use of the
          -exec option.  The specified command is run once for
          each matched file.  The command is executed in the
          starting directory.  There are unavoidable security
          problems surrounding use of the -exec action; you should
          use the -execdir option instead.

編集:

ユーザーが正しく記述しているように、コメントで terdon および dessert がバックスラッシュを正しく処理するため、-rreadと一緒に使用する必要があります。 shellcheckによっても報告されます:

$ cat << EOF >> do.sh
#!/usr/bin/env sh
while read i; do printf "$i\n"; done < target_files_list.txt
EOF
$ ~/.cabal/bin/shellcheck do.sh

In do.sh line 2:
while read i; do printf "\n"; done < target_files_list.txt
      ^-- SC2162: read without -r will mangle backslashes.

したがって、次のようになります。

$ while read -r i; do sed -i -- 's/SOME_TEXT/SOME_TEXT_TO_REPLACE/g' "$i"; done < target_files_list.txt
7

1つの方法は、xargsを使用することです。

xargs -a target_files_list.txt -d '\n' sed -i -- 's/SOME_TEXT/TEXT_TO_REPLACE/g'

man xargsから:

   -a file, --arg-file=file
          Read items from file instead of standard input.  

   --delimiter=delim, -d delim
          Input  items  are  terminated  by  the specified character.  The
          specified delimiter may be a single character, a C-style charac‐
          ter  escape  such as \n, or an octal or hexadecimal escape code.
3
steeldriver

forループを使用するだけです。

IFS=$'\n' # Very important! Splits files on newline instead of space.

for file in $(cat files.txt); do
    sed ...
done

名前に改行(!)が含まれるファイルに遭遇すると、問題が発生することに注意してください。 (:

2
SilverWolf