Following bash script could do it
#!/bin/sh
until [ -z "$1" ]
do
�� ������ PKGNAME=ConfigurationOf$1
�������������� echo "Installing... $PKGNAME"
�������������� pharo Pharo.image \
������������������������������ config "
http://smalltalkhub.com/mc/Pharo/MetaRepoForPharo30" \
������������������������������ "$PKGNAME" \
������������������������������ --printVersion \
������������������������������ --install=stable
�������������� shift
done
But there are 3 issues
1) One package at a time as you said.
2) Cannot prevent CommandLineHandler to take -vm-display-null argument to install headless
3) All package names should be lowercased so people does not have to remember the exact name : OSProcess vs osprocess, INIFile vs. inifile, etc.
Cheers,
Hern��n