> 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 <Ctrl>V. $ echo ' ' | od -c # e c h o <SPACE> <SQUO> <Ctrl>V <TAB> <SQUO> 0000000 \t \n 0000002 $ echo '' | od -c # e c h o <SPACE> <SQUO> <TAB> <SQUO> 0000000 \n 0000001 $ --