2013-03-19から1日間の記事一覧

ts ファイルの後処理 mp4にしたあとの残骸削除

#!/bin/perl use strict; use warnings; use File::Path; use Cwd 'getcwd'; use Fcntl; use File::Find; use utf8; use File::Copy; my $dir = getcwd; my %wh = (); finddepth( { preprocess => \&p, wanted => \&d, nochdir => 0}, '.' ); # max-depth 1 …