Created
October 2, 2012 09:19
-
-
Save Shinpeim/3817716 to your computer and use it in GitHub Desktop.
あんたが全部私 のものにならないなら、私、何も要らない。
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
function aska { | |
r=$RANDOM; | |
num=`expr $r % 3` | |
if [ $num -eq 0 ]; then | |
echo "あんたが全部私のものにならないなら、私、何も要らない。" | |
elif [ $num -eq 1 ]; then | |
echo "知ってんのよ、アンタが私をオカズにしてること。\nいつもみたくやってみなさいよ。ここで観ててあげるから" | |
else | |
echo "あんた私のことわかってるつもりなの?\n救ってやれると思ってんの?\nそれこそ傲慢な思い上がりよ、分かるはずないわ。\n何もしない!私を助けてもくれない。抱きしめてもくれないくせに!"; | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment