fork(2) download
  1. #!/bin/bash
  2.  
  3. i="foo=bar"
  4. echo ${i}
  5. echo ${i#*=}
Success #stdin #stdout 0s 4528KB
stdin
Standard input is empty
stdout
foo=bar
bar