sed:replace_space_with_newline
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
sed:replace_space_with_newline [2017/04/03 14:48] – created peter | sed:replace_space_with_newline [2020/08/16 11:30] (current) – removed 192.168.1.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== SED - Replace space with newline ====== | ||
- | |||
- | There are a few ways to achieve that: | ||
- | |||
- | 1. sed | ||
- | |||
- | <code bash> | ||
- | echo "one two three" | sed 's/ /\n/g' | ||
- | |||
- | one | ||
- | two | ||
- | three | ||
- | </ | ||
- | |||
- | |||
- | 2. awk | ||
- | |||
- | <code bash> | ||
- | echo "one two three" | awk ' | ||
- | |||
- | one | ||
- | two | ||
- | three | ||
- | </ | ||
- | |||
- | |||
- | 3. tr | ||
- | |||
- | <code bash> | ||
- | $ echo "one two three" | tr -s ' ' ' | ||
- | |||
- | one | ||
- | two | ||
- | three | ||
- | </ | ||
sed/replace_space_with_newline.1491230921.txt.gz · Last modified: 2020/07/15 09:30 (external edit)