It look like set tabstop=4 in VIM, but I don't know how to set it in bash
for example, command
# echo -e "1234567890\t321\n1\t2\n123\t1"
current output
1234567890 321
1 2
123 1
I want output like this
1234567890 321
1 2
123 1
It can be shown in anywhere, just like cat somefile or php -r 'echo "\t123";'
How to set it ? thanks