to append few chars at the end of a file

hi
i want to open a file at runtime
append few chars at the end of each line
all these i want to have done automatically
how to do it

sed 's/$/a b c/' filename > newfilename
awk '{ print $0 "a b c" }' file

i believe this had been answered many times in the forum