我的命令很长,包含很多参数,并且某种程度上它无法正常工作。以下knife
命令将连接到远程vCenter并创建一个名为node1
的VM。如何包装以下命令并在ruby中运行?难道我做错了什么?
var_name = 'node1'
var_folder = 'folder1'
var_datastore = 'datastore1'
var_template_file = 'template_foo'
var_template = 'foo'
var_location = 'US'
cmd = 'knife vsphere vm clone var_name --dest-folder var_folder --datastore var_datastore --template-file var_template_file --template var_template -f var_location'
system(cmd)
最佳答案
require 'shellwords'
cmd = "knife vsphere vm clone #{var_name.shellescape} --dest-folder #{var_folder.shellescape} --datastore #{var_datastore.shellescape} --template-file #{var_template_file.shellescape} --template #{var_template.shellescape} -f #{var_location.shellescape}"
在您的特定情况下,即使没有
shellescape
也可以使用,但比后悔要安全得多。关于ruby - 使用很多参数运行shell命令,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28620323/