I'm trying to issue a command that requires a line break due to a formatting restriction.
I need to commit a file to a CVS repository, but the repository has a restriction that requires a message to be included in the following format.
Change #: <number>
Description: <description>
The command used to commit the file is:
cvs commit -m "Change #: <number>\nDescription: <description>" <filename>
However when I issue the command it doesn't seem to be properly recognizing the line break and it fails saying that I gave it an invalid Change # and no Description.
How can I make it recognize the new line without it trying to issue two separate commands?