for multiplication. * is the glob character and needs to be quoted or escaped, x needs to be followed by whitespace or it looks like 0x hexadecimal notation.
なので、クォートなしでアスタを使うとカレントディレクトリのファイルがが展開される…
$ math '1 * 10' 10 $ math 1 * 10 math: Error: Unknown function $ math 1 '*' 10 10