Você não está claro: você está editando arquivos antigos ou criando outros completamente novos?
Podem ser criados novos neste estilo com um único script bash:
$ cat script.sh #!/bin/bash cat <<EOF >firstfile 1. The quick brown fox jumped over the lazy dog. EOF cat <<EOF >secondfile 2. The quick brown fox jumped over the lazy dog. EOF echo Done. $ chmod 755 script.sh $ ./script.sh Done. $ for f in *file ; do echo -e "\n--- $f ---" ; cat $f ; done --- firstfile --- 1. The quick brown fox jumped over the lazy dog. --- secondfile --- 2. The quick brown fox jumped over the lazy dog. $
Para alterar coisas simples em arquivos já existentes:
$ tail -n 2 dead.letter With kind regards, Hannu $ sed -i -re 's/ kind/ very best/' dead.letter $ tail -n 2 dead.letter With very best regards, Hannu $