On Thursday 05 February 2004 23:26, gabriel wrote: > you know how you can pipe the output of one command into a file with > ">"? > > $ find . > file.txt > > is there a way to pipe it into a file over ssh? something like this? > > $ find . > ssh [EMAIL PROTECTED]:/path/to/file > > obviously, this doesn't work, but i'd like to know if there's a way > to make it work...
Just to clear something up... What you are describing is called "redirecting" because the sign ">" redirects the output of one stream into another one. "Piping" occurs when you send the output of one program as input to another one. To pipe a command you use the sign "|" which looks like a pipe ;-) Cheers, Renat -- [EMAIL PROTECTED] mailing list
