0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

jquery-uiを新規CDNサーバーを作成時に一括してダウンロードを行うスクリプトのサンプル

Posted at
# !/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
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?