Re: [linux] unable to check in code to svn when files contain spaces or characters

2011-01-26 Thread ed
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Mon, Jan 24, 2011 at 08:21:33PM +, ed wrote: ... > @arg = [ "svn", "add", "File with spaces" ]; My bad... as pointed out by Shlomi Fish, this is incorrect and should instead be: @arg = ( "svn", "add", "File with spaces" ); - -- Best rega

Re: [linux] unable to check in code to svn when files contain spaces or characters

2011-01-25 Thread Shlomi Fish
On Monday 24 Jan 2011 22:21:33 ed wrote: > On Mon, Jan 24, 2011 at 05:27:11PM +0530, Agnello George wrote: > > i got a file like this and i need add it into my svn > > > > admin/upload_data/FINAL leg list 19_01_2010 to agar (Merged data in > > one).xls > > > > i as able to add other files wi

Re: [linux] unable to check in code to svn when files contain spaces or characters

2011-01-24 Thread ed
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Mon, Jan 24, 2011 at 05:27:11PM +0530, Agnello George wrote: > i got a file like this and i need add it into my svn > > admin/upload_data/FINAL leg list 19_01_2010 to agar (Merged data in > one).xls > > i as able to add other files with space

Re: [CentOS] unable to check in code to svn when files contain spaces or characters

2011-01-24 Thread Nico Kadel-Garcia
On Mon, Jan 24, 2011 at 6:57 AM, Agnello George wrote: > i got a file like this and i need add it into my svn > > admin/upload_data/FINAL  leg  list  19_01_2010 to  agar  (Merged data in > one).xls First: don't do this, seriously. You're begging for pain in your scripting to handle such files fro

Re: unable to check in code to svn when files contain spaces or characters

2011-01-24 Thread Shlomi Fish
On Monday 24 Jan 2011 13:57:11 Agnello George wrote: > i got a file like this and i need add it into my svn > > admin/upload_data/FINAL leg list 19_01_2010 to agar (Merged data in > one).xls > > i as able to add other files with space using the following command : > > svn st |grep ? |cut -

unable to check in code to svn when files contain spaces or characters

2011-01-24 Thread Agnello George
i got a file like this and i need add it into my svn admin/upload_data/FINAL leg list 19_01_2010 to agar (Merged data in one).xls i as able to add other files with space using the following command : svn st |grep ? |cut -c8- |sed 's/ /\\ /g' |xargs svn add however there are some special c