This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# centOS 6.3 x86_64を対象に動作します。 | |
# | |
# yumリポジトリのアップデート | |
yum -y update | |
# 通常のyumリポジトリを参照する必要モジュールのインストール |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var getQueryString = function(option) { | |
var delimiter; | |
if (!option || !option.hasOwnProperty('delimiter')) { | |
delimiter = '&'; | |
} else { | |
delimiter = option.delimiter; | |
} | |
var slice_point = window.location.href.indexOf('?'); | |
if (slice_point < 0) { |
NewerOlder