sed:introduction
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
sed:introduction [2020/08/17 10:50] – created 192.168.1.1 | sed:introduction [2022/06/14 08:20] (current) – [Use of '\t' in sed scripts] peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== SED - Introduction ====== | ====== SED - Introduction ====== | ||
+ | |||
+ | ===== Typical Usage ===== | ||
+ | |||
+ | ^Example Usage^Comment^ | ||
+ | |cat filename< | ||
+ | |sed ' | ||
+ | |sed ' | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Quoting Syntax ===== | ||
+ | |||
+ | The preceding examples use single quotes **(' | ||
+ | |||
+ | Single quotes prevent the Unix shell from interpreting the dollar sign **($)** and back-quotes **(`...`)**, | ||
+ | |||
+ | Users of the **" | ||
+ | |||
+ | Versions of sed written for DOS invariably require double quotes **(" | ||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Use of ' | ||
+ | |||
+ | For clarity in this documentation, | ||
+ | |||
+ | However, most versions of sed do not recognize the ' | ||
+ | |||
+ | <WRAP info> | ||
+ | **NOTE: | ||
+ | </ | ||
+ | |||
+ | |||
+ | ---- | ||
+ | |||
+ | ===== Optimizing for speed ===== | ||
+ | |||
+ | If execution speed needs to be increased (due to large input files or slow processors or hard disks), substitution will be executed more quickly if the " | ||
+ | |||
+ | Thus: | ||
+ | |||
+ | <code bash> | ||
+ | sed ' | ||
+ | sed '/foo/ s/ | ||
+ | sed '/foo/ s// | ||
+ | </ | ||
+ | |||
+ | On line selection or deletion in which you only need to output lines from the first part of the file, a " | ||
+ | |||
+ | Thus: | ||
+ | |||
+ | <code bash> | ||
+ | sed -n ' | ||
+ | sed -n ' | ||
+ | </ | ||
sed/introduction.1597661433.txt.gz · Last modified: 2020/08/17 10:50 by 192.168.1.1