fork(4) download
  1. #!/bin/bash
  2. s="50G This is a Test (0000) 1234p (String).ext"
  3. sed -E 's|^[^[:space:]]+[[:space:]]*||g' <<< "$s"
  4. sed -E 's|^\S+\s*||' <<< "$s"
Success #stdin #stdout 0.01s 5620KB
stdin
Standard input is empty
stdout
This is a Test (0000) 1234p (String).ext
This is a Test (0000) 1234p (String).ext