What is the proper way to insert tab in sed? I'm inserting a header line into a stream using sed. I could probably do a replacement of some character afterward to put in tab using regular expression, but is there a better way to do it?
For example, let's say I have:
some_command | sed '1itextTABtext'
I would like the first line to look like this (text is separated by a tab character):
text text
I have tried substituting TAB in the command above with "\t", "\x09", " " (tab itself). I have tried it with and without double quotes and I can't get sed to insert tab in between the text.
I am trying to do this in SLES 9.
Use Ctrl+V (or Control+V on a Mac) and then the tab key. That will put a literal tab on the command line, which can be useful if (like me) you need to grep for a single character in a field in a tab delimited text file.
The tab character can be inserted by holding the Alt and pressing 0 and 9 together.
If you want to make sure that Word inserts a tab character, simply press Ctrl+Tab. This will work any time in Word but is of the most use at the beginning of lines.
Assuming bash (and maybe other shells will work too):
some_command | sed $'1itext\ttext'
Bash will process escapes, such as \t
, inside $' '
before passing it as an arg to sed.
You can simply use the sed
i
command correctly:
some_command | sed '1i\ text text2'
where, as I hope it is obvious, there is a tab between 'text' and 'text2'. On MacOS X (10.7.2), and therefore probably on other BSD-based platforms, I was able to use:
some_command | sed '1i\ text\ttext2'
and sed
translated the \t
into a tab.
If sed
won't interpret \t
and inserting tabs at the command line is a problem, create a shell script with an editor and run that script.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With