sed:new_line
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
sed:new_line [2016/10/18 09:33] – created peter | sed:new_line [2020/07/15 09:30] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 3: | Line 3: | ||
Neither **\s*** (as I would use in javascript and php) nor **\s\{3, | Neither **\s*** (as I would use in javascript and php) nor **\s\{3, | ||
- | Note too that **\n** is not recognized as a new line. To get a new line **\' | + | Note too that **\n** is not recognized as a new line. To get a new line **\' |
To modify the .profile file. | To modify the .profile file. | ||
Line 10: | Line 10: | ||
#sed -i .bak ' | #sed -i .bak ' | ||
#sed -i .bak ' | #sed -i .bak ' | ||
- | < | + | </code> |
The two lines above did what I wanted but the second line did a backup of the modified ~/ | The two lines above did what I wanted but the second line did a backup of the modified ~/ | ||
Line 18: | Line 18: | ||
\export\ JAVA_HOME=\/ | \export\ JAVA_HOME=\/ | ||
\export\ PATH=${JAVA_HOME}\/ | \export\ PATH=${JAVA_HOME}\/ | ||
- | < | + | </code> |
The new line is achieved by ending a regex with \ and continuing it with \ on the next line. If there are white spaces in front of \ they will also appear in ~/.profile. | The new line is achieved by ending a regex with \ and continuing it with \ on the next line. If there are white spaces in front of \ they will also appear in ~/.profile. | ||
sed/new_line.1476783235.txt.gz · Last modified: 2020/07/15 09:30 (external edit)