fork download
  1. #!/bin/bash
  2.  
  3. { echo "test"; echo "נחמן"; } | sed -E ':;s/^(\S+)\S/\1 &/;t'
Success #stdin #stdout 0s 5028KB
stdin
Standard input is empty
stdout
t te tes test
נ נח נחמ נחמן