fork download
  1. #!/bin/bash
  2. s1=1
  3. s2=2
  4. s3=3
  5.  
  6. sum=$(expr "$s1" + "$s2" + "$s3")
  7. echo "$sum"
Success #stdin #stdout 0s 5084KB
stdin
Standard input is empty
stdout
6