我正在尝试使用以下命令将当前工作目录中的所有文件大写:
ls | awk '{system("svn mv " $0 " " toupper(substr($0,1,1)) substr($0,2))}'
然而,我收到以下错误消息:
svn: '.' is not a working copy
svn: '.' is not a working copy
svn: '.' is not a working copy
svn: '.' is not a working copy
我在osx上。能否请你帮忙?提前致谢。