#!/usr/bin/perl -w $filename = shift || "Fav_mov.txt"; open (FILE, ">$filename") or die "can't open $filename: $!\n"; print "Your favorite movie: "; $line = <>; @movies = (); push @movies, "$line"; foreach $movie (@movies) { print "$movie\n" } print "Thank you!\n"; close(FILE);
In reply to Newbie Script by apocrates
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |