public
Description: echo(1) in ruby
Homepage:
Clone URL: git://github.com/bmizerany/recho.git
recho /
name age message
file .gitignore Wed Oct 28 00:37:06 -0700 2009 ignores [bmizerany]
file README.md Thu Oct 29 16:46:04 -0700 2009 typo fix [bmizerany]
directory lib/ Thu Oct 29 16:16:19 -0700 2009 cat(1) in ruby [bmizerany]
file recho.gemspec Thu Oct 29 16:17:37 -0700 2009 v0.2.0 [bmizerany]
README.md

echo(1) and cat(1) in ruby

Install

gem install recho

Usage

require 'recho'

include FileUtils

echo("foo msg") > "foo.txt"
echo("bar msg") >> "bar.txt"

cat("foo.txt", "bar.txt") # => "foo msg\nbar msg\n"

But wait! There's more!

cat("foo.txt", "bar.txt") > "cat.txt"

You like that?! Yeah. Thought so.

Alternatively, they are also module-functions on FileUtils

FileUtils.echo("testing") > "testing.txt"