317d53bd6b
git-svn-id: svn://atos.wmid.amu.edu.pl/utt@22 e293616e-ec6a-49c2-aa92-f4a8b91c5d16
16 lines
179 B
Raku
16 lines
179 B
Raku
|
|
while(<STDIN>) {
|
|
chomp;
|
|
$app = $_;
|
|
$path = `which $app 2>/dev/null`;
|
|
$err = $?;
|
|
print $app.": ";
|
|
if($err != 0) {
|
|
print "failed ($err)\n";
|
|
}
|
|
else {
|
|
print $path;
|
|
}
|
|
}
|
|
|