----- Original Message ----- From: Dat Nguyen <thucdat / hotmail.com> To: ruby-talk ML <ruby-talk / netlab.co.jp> Sent: Monday, October 23, 2000 6:27 AM Subject: [ruby-talk:5787] Shells and Ruby > Hello all, > > Is there anything that shells (Korn, C, Bash, Bourne, etc.), awk, sed, etc. > can do but Ruby can't? > > Thanks, > Dat Well, as far as I know, Ruby can do everything that ksh can, but perhaps not always as conveniently. I investigated using method_missing to treat OS commands as (missing) methods and then pass them with their args to the OS. But Ruby methods have commas separating their parameters. So it's not as simple as that. In short, it's easier to run an external program from ksh than from Ruby. That's my only thought so far. Hal