Como fazer o sed funcionar com linhas de quebra em um arquivo?

3

Estou adaptando script para inserir o conteúdo de um arquivo em outro arquivo. Isso é o que eu tenho agora:

#!/bin/sh

# Check if first and second parameters exist
if [ ! -z "" ]; then
    STRING=$(cat )
    # Check if the supplied file exist
    if [ -e  ]; then
        sed -i -e "2i$STRING" 
        echo "The string \"$STRING\" has been successfully inserted."
    else
        echo "The file does not exist."
    fi
else
   echo "Error: both parameters must be given."
fi

Eu corro com: ./prepend.sh content.txt example.txt

O arquivo content.txt :

first_line
second_line

O arquivo example.txt :

REAL_FIRST_LINE
REAL_SECOND_LINE

Saída do script:

sed: -e expression #1, char 24: unterminated 's' command
The string "first_line
second_line" has been successfully inserted.

E o conteúdo do arquivo example.txt permanece o mesmo, quando eu quero que seja assim:

REAL_FIRST_LINE
first_line
second_line
REAL_SECOND_LINE
    
por Lucio 07.03.2014 / 03:36

2 respostas

8

Parece que você deseja o comando r :

sed "1r " ""

Você pode fazer isso com o GNU sed:

cat "" | sed '2r /dev/stdin' ""
    
por glenn jackman 07.03.2014 / 03:50
3

Na versão GNU de sed , você pode usar o comando r (read) para ler e inserir o conteúdo do arquivo diretamente em um determinado endereço de linha

r filename
    As a GNU extension, this command accepts two addresses.

    Queue the contents of filename to be read and inserted into the output stream
    at the end of the current cycle, or when the next input line is read. Note that
    if filename cannot be read, it is treated as if it were an empty file, without
    any error indication.

    As a GNU sed extension, the special value /dev/stdin is supported for the file
    name, which reads the contents of the standard input.

Por exemplo

$ sed '1r content.txt' example.txt
REAL_FIRST_LINE
first_line
second_line
REAL_SECOND_LINE
    
por steeldriver 07.03.2014 / 03:52