How to input tab in command line?

2010-07-10 Thread Peng Yu
Hi,

I have command completion in my bash command. But I need to input tab
in the command line. Is there a way to do so?

-- 
Regards,
Peng



Re: How to input tab in command line?

2010-07-10 Thread John Reiser
 I have command completion in my bash command. But I need to input tab
 in the command line. Is there a way to do so?

Quote the TAB with CtrlV.

$ echo ' ' | od -c   #  e c h o SPACE SQUO CtrlV TAB SQUO
000  \t  \n
002
$ echo '' | od -c # e c h o SPACE SQUO TAB SQUO
000  \n
001
$

--