我正在写一个快速的Rails应用程序,并想知道如何验证exec'd命令的成功.我正在运行的两个命令是SVN更新,以及从一个目录到另一个目录的cp.
如果使用Kernel.system()方法,它将返回一个指示命令成功的布尔值.
result = system("cp -r dir1 dir2") if(result) #do the next thing else # handle the error
有不同Ruby系统的比较好的命令在这里.