From: Christopher Graves Date: 2011-03-10T04:38:58+09:00 Subject: psexec with array I'm trying to run commands on a remote machine via psexec. The issue that I'm having is when grabbing the IP address from the array it wants to put everything that follows on a separate line. uName = "admin" pWord = "1234" ip = IO.readlines("ipAddresses.txt") ip.each do |host| puts "psexec \\\\#{host} -u #{uName} -p #{pWord} cmd" end the reply is psexec \\127.0.0.1 -u admin -p 1234 cmd is there a way to get that output on the same line so that psexec can run properly with the system process. thanks -- Posted via http://www.ruby-forum.com/.