fork download
  1. #!/bin/bash
  2. # Define the variables
  3. name="Contado, Jolina M."
  4. program="BSIT"
  5. year_level="3rd Year"
  6. # Print the output
  7. echo "$name"
  8. echo "$program"
  9. echo "$year_level"
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
Contado, Jolina M.
BSIT
3rd Year