I am trying to capitalize all files in my current working directory using the following command:
ls | awk '{system("svn mv " $0 " " toupper(substr($0,1,1)) substr($0,2))}'
Yet, I am getting the following error message:
svn: '.' is not a working copy
svn: '.' is not a working copy
svn: '.' is not a working copy
svn: '.' is not a working copy
I am on a osx. Could you please help? Thanks in advance.