タグ

2009年2月11日のブックマーク (2件)

  • ガイルのCG

    This is a rendition of Guile from Street Fighter II. I loved this game when i was young and spent many a round and many a quarter playing it. My favorite character was Guile. I always felt like he was a well rounded fighter and a cool character. I used to draw him (and the other SF character) a lot when i was younger. Then much later i thought it would be cool to do a re-visioning or a personal pi

  • perl - open my $fh, "comand |"; # はモダンじゃない : 404 Blog Not Found

    2009年02月10日01:00 カテゴリLightweight Languages perl - open my $fh, "comand |"; # はモダンじゃない モダンPerl入門 牧大輔 「モダンPerl入門」発売記念ということで、同書を補足するentryを。 同書でちょっと残念だったのが、[5.2 外部コマンドの実行]。あまりモダンではないのだ。 P. 141 system("/sbin/wget", "http://example.com"); これはいいのだが、以下がちょっとまずい。 my $output = `/bin/ls tmp`; open(my $fh, '| cat -v'); これ、何がまずいか、というと、コマンド実行の際に/bin/shを使ってしまうのだ。そのおかげでcommand < from > to 2&>1のようなリダイレクトも使えるなどの利点もあ

    perl - open my $fh, "comand |"; # はモダンじゃない : 404 Blog Not Found