texto de vários arquivos substitua por sed

5

Eu tento substituir alguns textos em arquivos de texto com sed , mas não sei como fazer isso com vários arquivos.
Eu uso:

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

Antes de eu ir com os vários arquivos eu imprimi os caminhos de arquivos de texto direcionados em um arquivo de texto com este comando:

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

Agora quero executar sed de acordo com target_files_list.txt .

    
por elanozturk 24.12.2017 / 12:26

3 respostas

7

Você pode percorrer o arquivo usando while ... do loop:

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

No seu caso, você deve substituir o comando printf ... with sed que você quer.

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

No entanto, observe que você pode conseguir o que deseja usando apenas find :

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

Você pode ler mais sobre a opção -exec executando 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.

EDITAR:

Conforme observado corretamente pelos usuários terdon e sobremesa nos comentários é necessário usar -r com read porque ele será corretamente lidar com barras invertidas. Também é relatado por 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.

Então deve ser:

$ while read -r i; do sed -i -- 's/SOME_TEXT/SOME_TEXT_TO_REPLACE/g' "$i"; done < target_files_list.txt
    
por Arkadiusz Drabczyk 24.12.2017 / 12:42
3

Uma maneira seria usar xargs :

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

De 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.
    
por steeldriver 24.12.2017 / 14:40
2

Use apenas um loop for .

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

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

Observe que você terá problemas se encontrar arquivos com novas linhas (!) em seus nomes. (:

    
por seaturtle 24.12.2017 / 17:05