From: "Peña, Botp" Date: 2007-05-11T13:12:51+09:00 Subject: Re: from REALbasic > Terminal > RUBY ?! On Behalf Of Watanabe Carcass: # HOW CAN I PASS ARGUMENTS AS A STRING FROM A UNIX TERMINAL INTO A RUBY # SCRIPT? this is just one simple stupid example. there are many ways. root@pc4all:~# uname Linux root@pc4all:~# cat test.rb x=gets puts "you passed: #{x.upcase}" root@pc4all:~# echo this is a test | ruby test.rb you passed: THIS IS A TEST