用Ruby调用系统

时间:2010-04-09 09:29:15

标签: ruby system

我是ruby和编程的初学者,需要帮助系统调用将文件从源移动到目标,如下所示:

system(mv "#{@SOURCE_DIR}/#{my_file} #{@DEST_DIR}/#{file}")

可以在Ruby中执行此操作吗?如果是这样,那么正确的语法是什么?

4 个答案:

答案 0 :(得分:11)

system("mv #{@SOURCE_DIR}/#{my_file} #{@DEST_DIR}/#{file})

可以替换为

system("mv", "#{@SOURCE_DIR}/#{my_file}", "#{@DEST_DIR}/#{file}")

减少了命令行注入攻击的可能性。

答案 1 :(得分:9)

两种方式

推荐方式

您可以使用File Utils库中的功能查看here来移动文件,例如

mv(src, dest, options = {})


Options: force noop verbose

Moves file(s) src to dest. If file and dest exist on the different disk 
partition, the file is copied instead.

FileUtils.mv 'badname.rb', 'goodname.rb'
FileUtils.mv 'stuff.rb', '/notexist/lib/ruby', :force => true  # no error

FileUtils.mv %w(junk.txt dust.txt), '/home/aamine/.trash/'
FileUtils.mv Dir.glob('test*.rb'), 'test', :noop => true, :verbose => true


顽皮的方式

使用反引号方法(将任何字符串作为命令运行)

result = `mv "#{@SOURCE_DIR}/#{my_file} #{@DEST_DIR}/#{file}"`

好的,这只是调用系统命令的一种变体,但看起来更加顽皮!

答案 2 :(得分:3)

system("mv #{@SOURCE_DIR}/#{my_file} #{@DEST_DIR}/#{file})

应该是正确的电话

答案 3 :(得分:1)

我建议你使用Tanaka akira's escape library 以下是我的应用程序中的示例:

cmd = Escape.shell_command(['python', Rails::Configuration.new.root_path + '/script/grab.py']).to_s
system cmd