Go.Sed
Go.Sed copied to clipboard
An implementation of sed in Go. Just because!
Results
2
Go.Sed issues
Sort by
recently updated
recently updated
newest added
'T branch' command is the reverse of command 't branch'. see the doc: [gnu-sed](https://www.gnu.org/software/sed/manual/sed.html) t label (test) Branch to label only if there has been a successful substitution since the...
in traditional sed. there is a step pattern. ```bash > seq 10 | sed -n '1~3p' output: 1 4 7 10 ```