I want to add a specific line, lets say avatar
to the files that starts with MakeFile
and avatar
should be added to the 15th line in the file.
This is how to add text to files:
echo 'avatar' >> MakeFile.websvc
and this is how to add text to files that starts with MakeFile I think:
echo 'avatar' >> *MakeFile.
But I can not manage to add this line to the 15th line of the file.