Thanks!
Edited by Rinku27, 18 July 2010 - 04:48 AM.
mistake in spelling
Edited by Rinku27, 18 July 2010 - 04:48 AM.
mistake in spelling
|
|
|
#!/usr/bin/env perl use File::Remote qw(:replace); # special :replace tag # read from a remote file, display or download open(REMOTE, "host:/path/to/remote/file") or die $!; print while (< REMOTE >); close(REMOTE);