If all your magento projects require the same modules to be initially installed, you may create a bash file that installs them for you automatically.

install= // PATH TO MAGENTO INSTALL DIR

cd $install

./pear mage-setup .

modules=[] // INITIALISE THE ARRAY

modules[0]="connect.magentocommerce.com/community/[MODULE 1]"

modules[1]="magento-community/[MODULE 2]"

for m in ${modules[@]} ; do

    ./pear install --nodeps ${m}

    #./pear upgrade -f --no-deps ${m}

done

File has to be saved with .sh extension and then run

> [FILENAME].sh OR...

> bash [FILENAME].sh //(make sure it's executable first)
Error parsing XSLT file: \xslt\ArticleTags.xslt