sed -i -s '$a text' *.txt
[guest@localhost t]$ ls
file1.txt file2.txt file3.txt
[guest@localhost t]$
[guest@localhost t]$ cat file1.txt
a
[guest@localhost t]$ cat file2.txt
b
[guest@localhost t]$ cat file3.txt
c
[guest@localhost t]$
[guest@localhost t]$ sed -i -s '$a text' *.txt
[guest@localhost t]$
[guest@localhost t]$ cat file1.txt
a
text
[guest@localhost t]$ cat file2.txt
b
text
[guest@localhost t]$ cat file3.txt
c
text
[guest@localhost t]$