「MySQLのRPMをダウンロードするシェルスクリプト」の版間の差分
提供: Wikiducca
細 (1版) |
|
(相違点なし)
|
2011年10月14日 (金) 02:23時点における版
#!/bin/sh
FTPSV="ftp://ftp.jaist.ac.jp/pub/mysql/Downloads/MySQL-5.1/"
VERSION="5.1.50-1"
#ARCH="rhel4.i386"
ARCH="rhel5.x86_64"
mkdir -p ${VERSION}/${ARCH}
cd ${VERSION}/${ARCH}
wget ${FTPSV}MySQL-client-community-${VERSION}.${ARCH}.rpm
wget ${FTPSV}MySQL-devel-community-${VERSION}.${ARCH}.rpm
wget ${FTPSV}MySQL-server-community-${VERSION}.${ARCH}.rpm
wget ${FTPSV}MySQL-shared-community-${VERSION}.${ARCH}.rpm
exit 0
# EOF
なぜこの4種類なのかは、こちら を参照。