= private = protected
>(to)
Outputs from source, which is either a string of a file name or an IO object.
# File lib/shell/filter.rb, line 67 def > (to) case to when String dst = @shell.open(to, "w") begin each(){|l| dst << l} ensure dst.close end when IO each(){|l| to << l} else Shell.Fail Error::CantApplyMethod, ">", to.class end self end