무작위 답변을 생성하는 방법을 모르겠습니다.
결과의 예:
user:~$ ./question.sh do you love me ?
user:~$ yes
또는
user:~$ ./question.sh do you hate me ?
user:~$ maybe
모든 문자열을 다음과 같은 변수에 넣어 보았습니다.
d='yes','no','maybe' etc..
but the message errors is always : impossible : not found
답변1
#!/bin/bash
array=( yes no maybe )
read -p 'do you hate me ? [press a key] >>> '
echo ${arr[RANDOM % ${#array[@]}]}