|
- Sed Cheatsheet · GitHub
Sed commands Sed substitute command and flags sed 's original-string replacement-string [flags]' [input-file]
- GitHub - mbuilov sed-windows: Instructions for building sed. exe as a . . .
Instructions for building sed exe as a native windows application - mbuilov sed-windows
- Useful sed scripts patterns. - GitHub
Useful sed scripts patterns Contribute to adrianlarion useful-sed development by creating an account on GitHub
- sed-windows README. md at master · mbuilov sed-windows · GitHub
new switch '-C' or '--ignore-locale' - forces Sed to use the standard "C" locale; this switch is most usable in binary mode, to avoid possible interpretation of input data as multi-byte encoded strings (depending on the system locale)
- This is sed (unix stream editor) cheat sheet. - GitHub
* Sed command summary: * Do they take a single address, pattern or a range of addresses * What do they modify, is it input stream, output stream, pattern space or hold buffer * All commands with their descriptions * GNU sed extensions * Address range format It is available in pdf, txt (ascii) and doc (microsoft word) formats
- sed · GitHub Topics · GitHub
Debugger for Sed: demystify and debug your sed scripts, from comfort of your terminal
- GitHub - chapvic sed: GNU sed for Windows
GNU sed for Windows Contribute to chapvic sed development by creating an account on GitHub
- Sed Cheatsheet · GitHub
which will be portable to most users of sed, even though the popular GNU versions of sed allow a more succinct syntax When the reader sees a fairly long command such as this: sed -e ' AAA b' -e ' BBB b' -e ' CCC b' -e d it is heartening to know that GNU sed will let you reduce it to: sed ' AAA b; BBB b; CCC b;d' # or even sed ' AAA\|BBB\|CCC b;d'
|
|
|