Skip to content

Instantly share code, notes, and snippets.

View khalman-m's full-sized avatar
🕺
🕺🏾

Michael Khalman khalman-m

🕺
🕺🏾
View GitHub Profile
#!/usr/bin/env perl
# Copyright (c) 2015 Sergey Lyubka
# All rights reserved
use Encode;
my $dir = "/Users/$ENV{USER}/.Trash";
sub read_file($) { local $/; open FD, $_[0] or die $_[0]; binmode FD; <FD>; }