source: branches/locker-dev/locker/bin/scripts-start @ 1727

Last change on this file since 1727 was 1727, checked in by ezyang, 13 years ago
Restore PHP iCalendar.
  • Property svn:executable set to *
File size: 726 bytes
RevLine 
[127]1#!/bin/sh
2
[997]3choices () {
4    echo 'mediawiki MediaWiki'
5    echo 'wordpress WordPress'
6    echo 'gallery2 Gallery2'
7    echo 'phpbb phpBB'
[1727]8    echo 'phpical PHP iCalendar'
[997]9    echo 'trac Trac'
10    echo 'turbogears TurboGears'
[1012]11    echo 'django Django'
[1295]12    echo 'rails Ruby on Rails'
[997]13}
14
15nchoices=`choices | wc -l`
16
[127]17echo
18echo "What piece of software would you like to install?"
19echo
[997]20choices | sed 's/^[^ ]* //' | cat -n
[127]21echo
[997]22printf "Please enter a number 1-%d: " "$nchoices"
[127]23read num
24echo
25
26attach scripts 2>/dev/null
[997]27choice=`choices | sed -n "$num { s/ .*$//; p; }"`
28if [ -n "$choice" ]; then
29  . "/mit/scripts/bin$scriptsdev/scripts-$choice"
[127]30else
[458]31  echo "ERROR:"
[997]32  echo "You must enter a number 1 through $nchoices."
[127]33  exit 1
34fi
Note: See TracBrowser for help on using the repository browser.