
メソッドやプロパティの一部は日本語版にはあって英語版にはなかったり、プロパティがあっても読み出し専用になったりしています。さらに、CS2のメソッドの一部がCS3やCS4では大幅変更されて使えなくなっています。

既存のスクリプトの表記を少し手直しするだけのはずが、何度も書き直しをする羽目になりました(苦笑)
grep 1295 /Developer/Applications/Utilities/USB\ Prober.app/Contents/Resources/USBVendors.txt
#!/bin/shもっと言えば、引数の桁数チェックぐらいはした方が良いのですが面倒なのでこれで良しとしましょう(笑)
# this will convert USB Vender ID to Vender Name
if [ $# == 0 ]
then
echo "Sorry, but you need Vender ID as argument"
else
grep $1 /Developer/Applications/Utilities/USB\ Prober.app/Contents/Resources/USBVendors.txt
fi
exit 0
$ chmod 777 /Library/WebServer/Documents/mt-static/
$ chmod 777 /Library/WebServer/CGI-Executables/mt
$ chmod 777 /Library/WebServer/CGI-Executables/db/
$ chmod 777 /Library/WebServer/Documents/my_first_blog/
http://localhost/
http://localhost/cgi-bin/mt/mt.cgi
http://localhost/mt-static/
$ chmod 700 /Library/WebServer/Documents/mt-static/
<mt:IfArchiveTypeEnabled archive_type="Individual">
<mt:IfArchiveTypeEnabled archive_type="Daily">
<mt:IfArchiveTypeEnabled archive_type="Category-Daily">
<mt:ArchiveList archive_type="Category-Daily">
<mt:IfArchiveTypeEnabled archive_type="Daily">
<mt:ArchiveList archive_type="Daily">
<mt:IfArchiveTypeEnabled archive_type="Daily">
<mt:ArchiveList archive_type="Monthly" lastn="3">
<mt:ArchiveListHeader>
<div class="widget-archive-category-daily widget-archive widget">
<h3 class="widget-header">3ヶ月アーカイブ</h3>
<div class="widget-content">
<ul>
</mt:ArchiveListHeader>
<li><a href="<$mt:ArchiveLink$>"><$mt:ArchiveTitle$> (<$mt:ArchiveCount$>)</a></li>
<mt:ArchiveListFooter>
</ul>
</div>
</div>
</mt:ArchiveListFooter>
</mt:ArchiveList>
<mt:ArchiveList archive_type="Daily" lastn="14">
<mt:ArchiveListHeader>
<h4 class="widget-header">二週間アーカイブ</h4>
<div class="widget-content">
<ul>
</mt:ArchiveListHeader>
<li><a href="<$mt:ArchiveLink$>"><$mt:ArchiveTitle$> (<$mt:ArchiveCount$>)</a></li>
<mt:ArchiveListFooter>
</ul>
</div>
</mt:ArchiveListFooter>
</mt:ArchiveList>
</mt:IfArchiveTypeEnabled>