3
1

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.

bashで任意の文字列が作成されるまでループする

Posted at
# !/bin/bash
set -eu

KAWAII='桑原由気'
STRINGS=(`echo ${KAWAII} | grep -o '.'`)
NUM=${#STRINGS[@]}
YUSYOU=''

while true; do
	sleep 0.05
	random=$(((RANDOM%${NUM})))
	string=${STRINGS[$random]}
	YUSYOU=${YUSYOU}${string}
	echo -n ${string}
	if [ "${YUSYOU:$((${#YUSYOU}-${#KAWAII}))}" = "${KAWAII}" ] ; then
		echo
		echo ${KAWAII}
		echo '優勝'
		break
	fi
done

実行結果

yuki.gif

3
1
2

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
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?