Считайте содержимое файла и поместите определенную часть содержимого в отдельные файлы, используя bash

Я хотел бы получить конкретный файл содержит из одного файла и помещать в отдельные файлы с помощью bash. Я попытался получить файл test1, используя приведенный ниже код и смог получить его, но мне не удается получить все в уважаемых файлах.

Пробный код:

reportFile=/report.txt
test1File=/test1.txt
test2File=/test2.txt
test3File=/test3.txt

totalLineNo=`cat ${reportFile} | wc -l`
test1LineNo=`grep -n "Test1 file content :" ${reportFile} | grep -Eo '^[^:]+'`
test2LineNo=`grep -n "Test2 file content :" ${reportFile} | grep -Eo '^[^:]+'`
test3LineNo=`grep -n "Test3 file content :" ${reportFile} | grep -Eo '^[^:]+'`

exactTest1LineNo=`echo $(( ${test1LineNo} - 1 ))`
exactTest2LineNo=`echo $(( ${test2LineNo} -1 ))`
exactTest3LineNo=`echo $(( ${test3LineNo} -1 ))`

test1Content=`cat ${reportFile} | head -n ${exactTest1LineNo}`
test3Content=`cat ${reportFile} | tail -n ${exactTest3LineNo}`

echo -e "${test1Content}\r" >> ${test1File}
echo -e "${test3Content}\r" >> ${test3File}

report.txt:

-------------------------------------

My Report:

Test1 file content:
1
2
3
4
5
6

Test2 file content:
7
8
9
10

Test3 file content:
11
12
13
14
15

Note: Find my report above.

-------------------------------------

test1.txt (ожидается):

1
2
3
4
5
6

test2.txt (ожидается):

7
8
9
10

test3.txt (ожидается):

11
12
13
14
15

2 ответа

Решение

С одной awk команда:

awk '/^Test[0-9] file content:/{ f=1; fn=tolower($1)".txt"; next }
     f && NF{ print > fn }!NF{ f=0 }' report.txt 

Просмотр результатов:

$ head test[0-9].txt
==> test1.txt <==
1
2
3
4
5
6

==> test2.txt <==
7
8
9
10

==> test3.txt <==
11
12
13
14
15

Если я вас правильно понял: у вас длинный файл report.txt и вы хотите извлечь из него короткие файлы. За именем каждого файла следует строка " file content:" в файле report.txt.

Это мое решение:

#!/bin/bash
reportFile=report.txt

Files=`grep 'file content' $reportFile | sed 's/ .*$//'`

for F in $Files ; do
    f=${F,}.txt         # first letter lowercase and append .txt
    awk "/$F file content/,/^\$/ {print}" $reportFile |
        tail -n +2 |    # remove first line with "Test* file content:"
        head -n -1 > $f # remove last blank line
done
Другие вопросы по тегам