fork download
  1. echo “ enter a number”
  2. read a
  3. square = `expr $a \* $a`
  4. echo $square
Success #stdin #stdout #stderr 0.01s 5408KB
stdin
Standard input is empty
stdout
“ enter a number”

stderr
./prog.sh: line 3: square: command not found