3 ###APPAUTHOR: xiaoranzzz
4 ###APPDATE: Fri Sep 21 22:33:33 2007
6 ###APPDESC: show cmd related information,output it's location
8 ###APPEXAMPLE: cmdinfo perl
11 $ARGV[0]="--help" unless(@ARGV);
12 exit 0 unless(system("plhelp",$0,(@ARGV)));
15 my $location=`which "$cmdname"`;
17 die("Command $cmdname not found in PATH\n") unless($location);
18 my $info=`file -biL "$location"`;
22 my $format="%-15s%s\n";
23 printf ($format,"Name:",$cmdname);
24 printf ($format,"FileType:",$info);
25 printf ($format,"Location:",$location);
26 printf ($format,"LinkTo:",readlink($location)) if(-l
$location);