fork download
  1. #!/bin/bash
  2. s='apple -berry --sun house-roof computer-- orange number-43'
  3. sed -E 's/(^|[[:space:]]+)-{1,2}[^[:space:]]+//g' <<< "$s"
Success #stdin #stdout 0.01s 5552KB
stdin
Standard input is empty
stdout
apple house-roof computer-- orange number-43