fork download
  1. #!/bin/bash
  2. files="$(ls)"
  3. web_files=`ls public_html`
  4. echo "$files" # we need the quotes to preserve embedded newlines in $files
  5. echo "$web_files" # we need the quotes to preserve newlines
  6. X=`expr 3 \* 2 + 4` # expr evaluate arithmatic expressions. man expr for details.
  7. echo "$X"
  8.  
  9.  
Success #stdin #stdout 0s 4056KB
stdin
Standard input is empty
stdout