Skip to content

Instantly share code, notes, and snippets.

@backroot
Last active August 27, 2015 14:00
Show Gist options
  • Save backroot/8b4eca6e64b9cbaf0a6d to your computer and use it in GitHub Desktop.
Save backroot/8b4eca6e64b9cbaf0a6d to your computer and use it in GitHub Desktop.
ファイルの書き込み
sub writeFile{
my( $path, $data, $mode) = @_;
$mode ? open( FH, ">>".$path) : open( FH, ">".$path);
binmode( FH);
print FH $data;
close( FH);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment