Reference
RealMotion Typography001http://www.generative.info/works/p5/rmtype2/
via
www.textfile.org - RealMotionTypography001http://www.hyuki.com/tf/20040530000020.html
$ /usr/bin/netstat
ip open: Permission denied
can't open mib stream: Bad file number
rootなら問題無し.
$ ls -la /devices/pseudo/ip@0:ip /devices/pseudo/ip6@0:ip6
crw-rw---- 1 root sys 143, 1 Mar 20 03:32 /devices/pseudo/ip6@0:ip6
crw-rw---- 1 root sys 3, 0 Mar 20 03:32 /devices/pseudo/ip@0:ip
- 対処法
/devices/pseudo/ip@0:ip
/devices/pseudo/ip6@0:ip6
のパーミッションを変更する.
# chmod o+rw /devices/pseudo/ip@0:ip /devices/pseudo/ip6@0:ip6
- Reference
Usenet News Archive - uwo.ccs.changes/2002.Aug - 1
http://www.uwo.ca/its/doc/news-archives/uwo.ccs.changes/2002.Aug/1
Sun Managers (2001/06) - 00154
http://aa11.cjb.net/sun_managers/2001/06/msg00154.html
foreach $key (sort(keys %hash)) {
print "$key => $hash{$key}\n";
}
foreach $key (sort {$b cmp $a} keys %hash){
print "$key => $hash{$key}\n";
}
foreach $key (sort { $hash{$a} <=> $hash{$b} } keys %hash) {
print "$key => $hash{$key}\n";
};
foreach $key (sort { $hash{$a} cmp $hash{$b} } keys %hash) {
print "$key => $hash{$key}\n";
};
foreach $key (sort { $hash{$b} <=> $hash{$a} } keys %hash) {
print "$key => $hash{$key}\n";
};
foreach $key (sort { $hash{$b} cmp $hash{$a} } keys %hash) {
print "$key => $hash{$key}\n";
};