copy and paste this google map to your website or blog!
Press copy button and paste into your blog or website.
(Please switch to 'HTML' mode when posting into your blog. Examples: WordPress Example, Blogger Example)
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
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'
GitHub - dohlee learn-sed: :pencil2: SED tutorial SED stands for Stream EDitor, developed by Lee E McMahon of Bell Labs SED can be used for text manipulation, such as text substitution, selective line deletion, and selective line output