rush

screenshot

rush is a replacement for the unix shell (bash, zsh, etc) which uses pure Ruby syntax. Grep through files, find and kill processes, copy files - everything you do in the shell, now in Ruby. Previously if you wanted to count the number of classes in your project, you might use a bash command like: find myproj -name \*.rb | xargs grep '^\s*class' | wc -l In rush, this is: myproj['**/*.rb'].search(/^\s*class/).lines.size How about killing those pesky stray mongrels? Before: kill `ps aux | grep mongrel_rails | ...

http://rush.heroku.com/

gitから入れた。よくわからん。
rubyのような文法のシェル。従来はコマンドの引数として対象となるオブジェクトを渡していたが、オブジェクト(例えばファイル)に対してメソッド(コマンド?)を"."に続けて指定する。PowerShellが似ている気がする
uby文法のシェル
Ruby知らないけど名前がかっこいいので惚れた。
なんかビミョーかも

http://b.hatena.ne.jp/entry/http://rush.heroku.com/