RE: commit -m Line One\rLineTwo

2001-04-19 Thread Andy Baker
Or ksh... $ cvs commit -m"$(echo "Line One\nLineTwo")" file Andy -Original Message- From: Gianni Mariani [mailto:[EMAIL PROTECTED]] Sent: 13 April 2001 15:26 To: James A. N. Stauffer; CVS Subject: RE: commit -m "Line One\rLineTwo" It seems t

RE: commit -m Line One\rLineTwo

2001-04-13 Thread Gianni Mariani
It seems this depends more on your shell than it does cvs. Using tcsh you need to do so: cvs commit -m "foo\ bar" tcsh requires an escape ('\') for each newline withing a quote. On bash you do: cvs commit -m "foo bar"