0
システムコマンドで実行されるコマンドがあります。 シェルに渡されたものをログに記録できますか?Rubyとシステム入力
P.S.私は、あなたが、「引用符での問題」を有する言及したあなたは、システムコマンドに
command = "whoami" # store the command as string
puts command # print it before you execute it
system(command) # execute it in the shell
"通過したもの"とはどういう意味ですか?システムコマンドが返す結果は? – Vapire
シェルで呼び出される正確な文字列 –
コマンドの出力をキャプチャしますか? –