古い記事
ランダムジャンプ
新しい記事

jpgpage.pl

2003-06-19-2 [Programming]
写真一覧用 HTML ファイルを作るプログラム。perl ユーザでデジカメ持っている人なら誰でも一度は作るものかも。元はワンライナーなので、こんだけ:
#!/usr/bin/env perl
# usage: ls -1 *jpg | jpgpage.pl > index.html
print qq(<html><head><title>photo</title></head><body>\n);
while (<>) {
    chomp;
    print qq(<a href="$_"><img width="194" height="128" src="$_"></a>\n);
}
print qq(</body></html>\n);