Eu tenho dois arquivos de texto: string.txt e lengths.txt
String.txt:
abcdefghijklmnopqrstuvwxyz
lengths.txt
5
4
10
7
Eu quero pegar o arquivo
>Entry_1
abcde
>Entry_2
fghi
>Entry_3
jklmnopqrs
>Entry_4
tuvwxyz
Estou trabalhando com cerca de 28.000 entradas e elas variam entre 200 e 56.000 caracteres.
No momento, estou usando:
start=1
end=0
i=0
while read read_l
do
let i=i+1
let end=end+read_l
echo -e ">Entry_$i" >>outfile.txt
echo "$(cut -c$start-$end String.txt)" >>outfile.txt
let start=start+read_l
echo $i
done <lengths.txt
Mas é muito ineficiente. Alguma ideia melhor?
{ while read l<&3; do head -c"$l"; echo; done 3<lengths.txt; } <String.txt
.
str="$(cat string.txt)"; i=0; while read j; do echo "${file:$i:$j}"; i=$((i+j)); done <length.txt
..seems rápido o suficiente como é feito apenas por shell ..