Je voudrais concaténer une variable de type chaîne en awk. Comment puis-je le faire ? J'ai essayé :
BEGIN{
t="."
r=";"
w=t+r
print w}
Mais ça ne marche pas. Sortie :
0
Ou je veux ajouter une variable et le résultat de la fonction. Entrée :
t t t t
a t a ta
ata ta a a
script :
{
key="t"
print gsub(key,"")#<-it's work
b=b+gsub(key,"")#<- it's something wrong
}
END{
print b}#<-so this is 0
Sortie :
4
2
2
0#<-the last print