こういうshellがあったとして
rematch.sh
if [[ $1 =~ ^http://(.+)\.(.+) ]]; then
echo "${BASH_REMATCH[1]}"
echo "${BASH_REMATCH[2]}"
fi
実行するとこうなる
$ sh rematch.sh http://example.com
example
com
レビューで教えてもらってはじめて知った。便利ー。
Go to list of users who liked
More than 5 years have passed since last update.
こういうshellがあったとして
if [[ $1 =~ ^http://(.+)\.(.+) ]]; then
echo "${BASH_REMATCH[1]}"
echo "${BASH_REMATCH[2]}"
fi
実行するとこうなる
$ sh rematch.sh http://example.com
example
com
レビューで教えてもらってはじめて知った。便利ー。
Register as a new user and use Qiita more conveniently
Go to list of users who liked