tags:

views:

36

answers:

2

Hi. after I installed a package with pear, i would like to know what files this package installed. how can i check that?

thanks

+1  A: 

It would be easiest just to go to the pear folder and look for the folder of the package you just installed. I don't think pear has a built in utility for this.

@People downvoting. I think you misunderstand. He doesn't want to know what packages he has, he wasn't to know the specific files the packages add.

Ramblingwood
thank you for your assistance :)
ufk
no problem. actually reading is a handy skill =D
Ramblingwood
pear has a utility for this - see my answer ;-)
kguest
+2  A: 

If you installed the package via the pear installer (for example with "pear install package-name" at the command line), then you just need to do:

$ pear list package-name

It will also tell you what type of files they are (test scripts, documentation etc)

kguest
thanks a lot :)
ufk