Enviado em 07/11/2013 - 09:08h
Tenho um arquivo com conteúdo similar a este:Enviado em 07/11/2013 - 21:41h
é mais fácil com sed mesmo na minha opiniãosed '/with linespoints [1-9]/s/^\(.*with linespoints\)\(.*\)$/\1 lc\2/g' arquivo.txt
sed -i '/with linespoints [1-9]/s/^\(.*with linespoints\)\(.*\)$/\1 lc\2/g' arquivo.txt
Enviado em 07/11/2013 - 13:09h
Da pra fazer sim, ja conseguiu iniciar algo?Enviado em 07/11/2013 - 13:26h
Segue,cat file.txt | while read line do echo "$line" | grep linespoints &> /dev/null if [ $? -eq 0 ]; then LINHA=`echo "$line" | awk -F"linespoints" '{print $2}' | sed 's/ //g' ` &> /dev/null echo $LINHA | grep ^[0-9] &> /dev/null if [ $? -eq 0 ]; then echo "Fazer a substituicao em $line" else echo "Nao fazer nada em $line" fi fi done
Enviado em 07/11/2013 - 14:15h
Olá alexandre, toda ajuda é bem vinda. Na verdade as coisas podem ser bem mais simples !!cat file.txt | while read line do echo "$line" | grep linespoints &> /dev/null if [ $? -eq 0 ]; then LINHA=`echo "$line" | awk -F"linespoints" '{print $2}' | sed 's/ //g' ` &> /dev/null echo $LINHA | grep ^[0-9] &> /dev/null if [ $? -eq 0 ]; then echo "Fazer a substituicao em $line" else echo "Nao fazer nada em $line" fi fi done
Enviado em 07/11/2013 - 14:44h
Então, mas no caso que ele deve substituir somente a linha que contém um número após o linespoints, o buraco fica mais embaixo.#!/bin/bash # Substituir o seu arquivo texto no lugar de file.txt cat file.txt | while read line do echo "$line" | grep linespoints &> /dev/null if [ $? -eq 0 ]; then LINHA=`echo "$line" | awk -F"linespoints" '{print $2}' | sed 's/ //g' ` &> /dev/null echo $LINHA | grep ^[0-9] &> /dev/null if [ $? -eq 0 ]; then #echo "Fazer a substituicao em $line" SUB=`echo $line | sed 's/linespoints/linespoints lc/g' ` echo $SUB else echo "$line" fi fi done
Enviado em 07/11/2013 - 16:09h
Olá Alexandre, valeu a ajuda, mas esta solução não resolve meu problema.#!/bin/bash # Substituir o seu arquivo texto no lugar de file.txt cat file.txt | while read line do echo "$line" | grep linespoints &> /dev/null if [ $? -eq 0 ]; then LINHA=`echo "$line" | awk -F"linespoints" '{print $2}' | sed 's/ //g' ` &> /dev/null echo $LINHA | grep ^[0-9] &> /dev/null if [ $? -eq 0 ]; then #echo "Fazer a substituicao em $line" SUB=`echo $line | sed 's/linespoints/linespoints lc/g' ` echo $SUB else echo "$line" fi fi done
Enviado em 07/11/2013 - 17:13h
Cara, a saída que ele retorna é esta:[user1@TUX new]$ ./script.sh 23 with linespoints , asdf bla 22 with linespoints a asdf asdf bla bla blaee with linespoints lc 1 asdf aa with linespoints lc 2 asdf bla with linespoints asdf aa with linespoints lc 3 asdf
Enviado em 08/11/2013 - 08:50h
Perfeitamente, o SED é muito mais prático. Com uma linha podemos fazer a vez de um script, e reduzir muito código.sed '/with linespoints [1-9]/s/^\(.*with linespoints\)\(.*\)$/\1 lc\2/g' arquivo.txt
sed -i '/with linespoints [1-9]/s/^\(.*with linespoints\)\(.*\)$/\1 lc\2/g' arquivo.txt
Como gerar qualquer emoji ou símbolo unicode a partir do seu teclado
Instalar e Configurar o Slackware Linux em 2025
Como configurar os repositórios do apt no Debian 12 em 2025
Passkeys: A Evolução da Autenticação Digital
Instalação de distro Linux em computadores, netbooks, etc, em rede com o Clonezilla
Como dividir duas janelas igualmente e lado-a-lado na sua tela
Configurando o Conky para iniciar corretamente no sistema
3 configurações básicas que podem melhorar muito a sua edição pelo editor nano
MOVER ARQUIVO ENTRE PARTIÇOES (3)
Ocomon 6.0.1 - Problemas ao editar configurações estendidas (0)