# !/bin/sh
# バージョンを設定
version=$1
# 既にダウンロード済みの場合は削除してからダウンロードを行う
rmdir -rf $1
mkdir $1
# js ファイルダウンロード
cd $1
mkdir js
cd js
wget https://code.jquery.com/ui/$version/jquery-ui.js
wget https://code.jquery.com/ui/$version/jquery-ui.min.js
cd ..
# css ファイルダウンロード
mkdir css
cd css
for i in base black-tie blitzer cupertino dark-hive dot-luv eggplant excite-bike flick hot-sneaks humanity le-frog mint-choc overcast pepper-grinder redmond smoothness south-street start sunny swanky-purse trontastic ui-darkness ui-lightness vader
do
wget https://code.jquery.com/ui/$version/themes/$i/jquery-ui.css -O jquery-ui-$i.css
done
ln -snf jquery-ui-base.css jquery-ui.css
More than 5 years have passed since last update.
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme