2011-09-06から1日間の記事一覧

指定したフォルダの画像を連番で一括リネーム

perl -e 'my($source_dir, $tar_dir) = @ARGV; opendir $D, $source_dir; my $i = 0; while(my $file = readdir($D)) { next unless $file =~ /[^\.]/; $ext = (split(/\./, $file))[-1]; $cmd = "cp $source_dir/$file $tar_dir/$i.$ext"; $i++; print "[",…

yumで謎のエラー

yum(パッケージ管理ツール)を使用し、 ライブラリをインストールしようとした所、 下記のようなエラーが発生しました。 [root@localhost ~]# yum update Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: ftp.oss.eznet…