Note: In most shells, the asterisk must be escaped with a backslash to prevent it from being interpreted as a wildcard. expr 937808300 / 932955077 Result: 1

Note: expr performs integer division, so it discards the remainder. Usage Tips

expr treats each number and operator as a separate argument. You must include spaces (e.g., 9 + 5 , not 9+5 ).

Top