I am trying to vocab list for a greek text we are translating in class, I want to be able to replace every space or tab character with a paragraph mark, so that every word appears on it's own line. Can anyone give me the sed command, and explain what it is that I'm doing? I'm still trying to figure sed out.
|
You can use
The escape sequence The command above uses the file |
||||
|
The portable way to do this is:
That's an actual newline between the backslash and the slash-g. Many sed implementations don't know about With GNU sed you can use
GNU sed also supports "extended" regular expressions (that's egrep style, not perl-style) if you give it the -r flag, so then you can use
If this is for Linux only, you can probably go with the GNU command, but if you want this to work on systems with a non-GNU sed (eg: BSD, Mac OS-X), you might want to go with the more portable option. |
|||
|
|
|
This should do the work:
[ \t] means a space OR an tab. If you want any kind of space, you could also use \s [ \t]+ means as many spaces OR tabs as you want (but at least one) s/x/y/ means replace the pattern x by y (here \n is a new line) the g at the end means that you have to repeat as many times it occures in every line. |
|||||
|
|
