groups

name language licence
Rename a lot of files in a directory 1 Perl Other
For the start of a PERL file Perl Other
List of files in a directory Perl Other
Untitled Snippet
Write data to a file Perl Other
Make a file containing a list of files in a directory Perl Other
Untitled Snippet Other Other

< 1 2 >



language: Perl
licence: Other

Write data to a file

options: view full snippetsend to code collector
#!/usr/local/bin/perl
open(DAT,">$sitedata") || die("Cannot Open File");
close (DAT);

# Use >> to append
#     >  to overwrite 

	
(Continues...)