Shellスクリプトについて
趣味で自宅にubuntuを入れて、Linuxの本を片手にもって勉強している学生です
それでshellスクリプトでテストの結果を入力したら自動的にA.B.Cと認識するプログラムを作ったんですけど
$ ./test
./test: line 4: echoPlease input your record: command not found
12
./test: line 7: case12in: command not found
./test: line 8: syntax error near unexpected token `)'
./test: line 8: `100 | 99 | 98 | 97 | 96 | 95 | 94 | 93 | 92 | 91| 90 ) echo"A";;'
なぜコマンドが見つからないのかわかりません
ちなみにプログラムは
#!/bin/sh
echo"Please input your record"
read record
case"$record"in
100|99|98|97|96|95|94|93|92|91|90) echo"A";;
89|88|87|86|85|84|83|82|81|80) echo"B";;
79|78|77|76|75|74|73|72|71|70) echo"C";;
69|68|67|66|65|64|63|62|61|60) echo"D";;
59|58|57|56|55|54|53|52|51|50) echo"E";;
49|48|47|46|45|44|43|42|41|40) echo"F";;
39|38|37|36|35|34|33|32|31|30) echo"G";;
29|28|27|26|25|24|23|22|21|20) echo"H";;
19|18|17|16|15|14|13|12|11|10) echo"I";;
9|8|7|6|5|4|3|2|1|0) echo"J";;
*)echo"sorry,answer not recognized";;
esac
exit
もしどこか間違っていたら教えてください
補足
はい、つい先ほど行ったのですがダメでした。 ついでにiSquint自体も1.0→1.5に 上げてみたのですがダメでした。