Extrai texto entre três aspas simples

8

Eu tenho o seguinte em um arquivo

description: '''
        This rule forbids throwing string literals or interpolations. While
        JavaScript (and CoffeeScript by extension) allow any expression to
        be thrown, it is best to only throw <a
        href="https://developer.mozilla.org
        /en/JavaScript/Reference/Global_Objects/Error"> Error</a> objects,
        because they contain valuable debugging information like the stack
        trace. Because of JavaScript's dynamic nature, CoffeeLint cannot
        ensure you are always throwing instances of <tt>Error</tt>. It will
        only catch the simple but real case of throwing literal strings.
        <pre>
        <code># CoffeeLint will catch this:
        throw "i made a boo boo"

        # ... but not this:
        throw getSomeString()
        </code>
        </pre>
        This rule is enabled by default.
        '''

com várias outras coisas neste arquivo.

Eu extraio esta parte no meu shell script via sed -n "/'''/,/'''/p" $1 (onde $1 é o arquivo).

Isso me dá uma variável com o conteúdo como um liner

description: ''' This rule forbids throwing string literals or interpolations. While JavaScript (and CoffeeScript by extension) allow any expression to be thrown, it is best to only throw <a href="https://developer.mozilla.org /en/JavaScript/Reference/Global_Objects/Error"> Error</a> objects, because they contain valuable debugging information like the stack trace. Because of JavaScript's dynamic nature, CoffeeLint cannot ensure you are always throwing instances of <tt>Error</tt>. It will only catch the simple but real case of throwing literal strings. <pre> <code># CoffeeLint will catch this: throw "i made a boo boo" # ... but not this: throw getSomeString() </code> </pre> This rule is enabled by default. '''

Como posso agora extrair a peça entre o ''' ?

Ou existe ainda uma maneira melhor de recuperá-lo do arquivo de múltiplas linhas?

Eu estou no Mac El Captain 10.11.2 e no GNU bash, versão 3.2.57 (1) -release (x86_64-apple-darwin15)

    
por Emerson Cod 11.01.2016 / 14:37

3 respostas

12
perl -l -0777 -ne "print for /'''(.*?)'''/gs" file

extrairia (e imprimiria seguido por uma nova linha) a parte entre cada par de '' '.

Tenha em atenção que perl utiliza o ficheiro inteiro na memória antes de começar a processá-lo, para que a solução possa não ser apropriada para ficheiros muito grandes.

    
por 11.01.2016 / 15:33
7

Tente isso, se você tiver gawk ou mawk à sua disposição:

gawk -v "RS='''" 'FNR%2==0' file

Isso pressupõe que não haja outros ''' -s no arquivo.

Explicação: Define o separador de registro para três aspas simples e imprime se o número do registro for par.

Infelizmente, ele não funcionará com todas as implementações de awk , pois os Separadores de registros de vários caracteres não fazem parte de POSIX awk .

    
por 11.01.2016 / 14:41
4

Não é tão bom quanto a resposta do awk, mas como você estava usando originalmente o sed

/'''/{
   s/.*'''//
   :1
   N
   /'''/!b1
   s/'''.*//
   p
}
d

Ou mais curto, como apontado por Glenn Jackman nos comentários (ligeiramente alterado)

/'''/,//{
//!p
}
d

Executar como

sed -f script file

Saída

    This rule forbids throwing string literals or interpolations. While
    JavaScript (and CoffeeScript by extension) allow any expression to
    be thrown, it is best to only throw <a
    href="https://developer.mozilla.org
    /en/JavaScript/Reference/Global_Objects/Error"> Error</a> objects,
    because they contain valuable debugging information like the stack
    trace. Because of JavaScript's dynamic nature, CoffeeLint cannot
    ensure you are always throwing instances of <tt>Error</tt>. It will
    only catch the simple but real case of throwing literal strings.
    <pre>
    <code># CoffeeLint will catch this:
    throw "i made a boo boo"

    # ... but not this:
    throw getSomeString()
    </code>
    </pre>
    This rule is enabled by default.
    
por 11.01.2016 / 15:19