ports bulk install command for OSX


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  1. #!/bin/bash
  2.  
  3. IFS="
  4. "
  5. list="
  6. [email protected]+with_default_names
  7. [email protected]+with_default_names
  8. getopt
  9. openssh
  10. sqlite3
  11. apache2
  12. postgresql82
  13. postgresql82-server
  14. [email protected]+macosx+apache2+mysql5+postgresql+readline+pear+pcntl+sqlite+fastcgi
  15. rsync
  16. keychain
  17. subversion
  18. cvs
  19. lv
  20. wget
  21. lha
  22. optipng
  23. advancecomp
  24. aspell
  25. aspell-dict-en
  26. dict
  27. zip
  28. gnupg
  29. ruby
  30. gnutls
  31. lighttpd
  32. fetchmail
  33. maildrop
  34. synergy
  35. "
  36.  
  37. for i in $list ;do
  38. port install ${i}
  39. done
  40.  
  41. # /opt/local/apache2/bin/apxs -a -e -n "php5" /opt/local/apache2/modules/libphp5.so
  42.  

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.