File input/output

From Rosetta Code
Revision as of 03:13, 14 January 2007 by MikeMol (talk | contribs) (→‎[[Bash]])
Task
File input/output
You are encouraged to solve this task according to the task description, using any language you may know.

In this task, the job is to create a file called "output.txt", and place in it the contents of the file "input.txt".

Perl

Interpreter: Perl 5.8.8

#!/usr/bin/perl -w

open INPUT, "<input.txt";
open OUTPUT, ">output.txt";

while ( <INPUT> ) {
  print OUTPUT $_;
}

UNIX Shell

Interpreter: Bourne Again SHell

#!/usr/bin/bash

cat input.txt > output.txt